Interface Cryptography


public interface Cryptography
This class can be extended to provide client specific encryption/decryption. This class is used in ConnectionFactory to decrypt passwords.
  • Method Summary

    Modifier and Type
    Method
    Description
    decrypt(String seed, String encryptedText)
    Used by ConnectionFactory to decrypt Password.
    encrypt(String seed, String toEncrypt)
    Used by by user to encrypt Passwords.
  • Method Details

    • encrypt

      String encrypt(String seed, String toEncrypt)
      Used by by user to encrypt Passwords.
      Parameters:
      seed -
      toEncrypt -
      Returns:
    • decrypt

      String decrypt(String seed, String encryptedText)
      Used by ConnectionFactory to decrypt Password. This version will return the encryptePassword , without any change.
      Parameters:
      encryptedText - -
      Returns:
      decrypted password