Uses of Class
org.owasp.esapi.crypto.PlainText

Packages that use PlainText
org.owasp.esapi The ESAPI interfaces and Exception classes model the most important security functions to enterprise web applications. 
org.owasp.esapi.reference.crypto This package contains the reference implementation for some of the ESAPI cryptography-related classes used throughout ESAPI. 
 

Uses of PlainText in org.owasp.esapi
 

Methods in org.owasp.esapi that return PlainText
 PlainText Encryptor.decrypt(CipherText ciphertext)
          Decrypts the provided CipherText using the information from it and the master encryption key as specified by the property Encryptor.MasterKey as defined in the ESAPI.properties file.
 PlainText Encryptor.decrypt(SecretKey key, CipherText ciphertext)
          Decrypts the provided CipherText using the information from it and the specified secret key.
 

Methods in org.owasp.esapi with parameters of type PlainText
 CipherText Encryptor.encrypt(PlainText plaintext)
          Encrypts the provided plaintext bytes using the cipher transformation specified by the property Encryptor.CipherTransformation and the master encryption key as specified by the property Encryptor.MasterKey as defined in the ESAPI.properties file.
 CipherText Encryptor.encrypt(SecretKey key, PlainText plaintext)
          Encrypts the provided plaintext bytes using the cipher transformation specified by the property Encryptor.CipherTransformation as defined in the ESAPI.properties file and the specified secret key.
 

Uses of PlainText in org.owasp.esapi.reference.crypto
 

Methods in org.owasp.esapi.reference.crypto that return PlainText
 PlainText JavaEncryptor.decrypt(CipherText ciphertext)
          Decrypts the provided CipherText using the information from it and the master encryption key as specified by the property Encryptor.MasterKey as defined in the ESAPI.properties file.
 PlainText JavaEncryptor.decrypt(SecretKey key, CipherText ciphertext)
          Decrypts the provided CipherText using the information from it and the specified secret key.
 

Methods in org.owasp.esapi.reference.crypto with parameters of type PlainText
 CipherText JavaEncryptor.encrypt(PlainText plaintext)
          Encrypts the provided plaintext bytes using the cipher transformation specified by the property Encryptor.CipherTransformation and the master encryption key as specified by the property Encryptor.MasterKey as defined in the ESAPI.properties file.
 CipherText JavaEncryptor.encrypt(SecretKey key, PlainText plain)
          Encrypts the provided plaintext bytes using the cipher transformation specified by the property Encryptor.CipherTransformation as defined in the ESAPI.properties file and the specified secret key.
 



Copyright © 2013 The Open Web Application Security Project (OWASP). All Rights Reserved.