Uses of Class
org.owasp.esapi.crypto.PlainText
-
Packages that use PlainText Package Description org.owasp.esapi The ESAPI interfaces andException
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 Modifier and Type Method Description PlainText
Encryptor. decrypt(javax.crypto.SecretKey key, CipherText ciphertext)
Decrypts the providedCipherText
using the information from it and the specified secret key.PlainText
Encryptor. decrypt(CipherText ciphertext)
Decrypts the providedCipherText
using the information from it and the master encryption key as specified by the propertyEncryptor.MasterKey
as defined in theESAPI.properties
file.Methods in org.owasp.esapi with parameters of type PlainText Modifier and Type Method Description CipherText
Encryptor. encrypt(javax.crypto.SecretKey key, PlainText plaintext)
Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformation
as defined in theESAPI.properties
file and the specified secret key.CipherText
Encryptor. encrypt(PlainText plaintext)
Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformation
and the master encryption key as specified by the propertyEncryptor.MasterKey
as defined in theESAPI.properties
file. -
Uses of PlainText in org.owasp.esapi.reference.crypto
Methods in org.owasp.esapi.reference.crypto that return PlainText Modifier and Type Method Description PlainText
JavaEncryptor. decrypt(javax.crypto.SecretKey key, CipherText ciphertext)
Decrypts the providedCipherText
using the information from it and the specified secret key.PlainText
JavaEncryptor. decrypt(CipherText ciphertext)
Decrypts the providedCipherText
using the information from it and the master encryption key as specified by the propertyEncryptor.MasterKey
as defined in theESAPI.properties
file.Methods in org.owasp.esapi.reference.crypto with parameters of type PlainText Modifier and Type Method Description CipherText
JavaEncryptor. encrypt(javax.crypto.SecretKey key, PlainText plain)
Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformation
as defined in theESAPI.properties
file and the specified secret key.CipherText
JavaEncryptor. encrypt(PlainText plaintext)
Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformation
and the master encryption key as specified by the propertyEncryptor.MasterKey
as defined in theESAPI.properties
file.
-