Interface OAuthTokenEncrypter


public interface OAuthTokenEncrypter
  • Method Summary

    Modifier and Type
    Method
    Description
    decrypt(OAuthToken encrypted)
    Decrypts the secret parts of the given OAuth access token.
    encrypt(OAuthToken unencrypted)
    Encrypts the secret parts of the given OAuth access token.
  • Method Details

    • encrypt

      OAuthToken encrypt(OAuthToken unencrypted)
      Encrypts the secret parts of the given OAuth access token.
      Parameters:
      unencrypted - a raw OAuth access token.
    • decrypt

      OAuthToken decrypt(OAuthToken encrypted)
      Decrypts the secret parts of the given OAuth access token.
      Parameters:
      encrypted - an encryppted OAuth access token.