Uses of Class
org.owasp.esapi.crypto.PlainText
-
Packages that use PlainText Package Description org.owasp.esapi The ESAPI interfaces andExceptionclasses 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 PlainTextEncryptor. decrypt(javax.crypto.SecretKey key, CipherText ciphertext)Decrypts the providedCipherTextusing the information from it and the specified secret key.PlainTextEncryptor. decrypt(CipherText ciphertext)Decrypts the providedCipherTextusing the information from it and the master encryption key as specified by the propertyEncryptor.MasterKeyas defined in theESAPI.propertiesfile.Methods in org.owasp.esapi with parameters of type PlainText Modifier and Type Method Description CipherTextEncryptor. encrypt(javax.crypto.SecretKey key, PlainText plaintext)Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformationas defined in theESAPI.propertiesfile and the specified secret key.CipherTextEncryptor. encrypt(PlainText plaintext)Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformationand the master encryption key as specified by the propertyEncryptor.MasterKeyas defined in theESAPI.propertiesfile. -
Uses of PlainText in org.owasp.esapi.reference.crypto
Methods in org.owasp.esapi.reference.crypto that return PlainText Modifier and Type Method Description PlainTextJavaEncryptor. decrypt(javax.crypto.SecretKey key, CipherText ciphertext)Decrypts the providedCipherTextusing the information from it and the specified secret key.PlainTextJavaEncryptor. decrypt(CipherText ciphertext)Decrypts the providedCipherTextusing the information from it and the master encryption key as specified by the propertyEncryptor.MasterKeyas defined in theESAPI.propertiesfile.Methods in org.owasp.esapi.reference.crypto with parameters of type PlainText Modifier and Type Method Description CipherTextJavaEncryptor. encrypt(javax.crypto.SecretKey key, PlainText plain)Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformationas defined in theESAPI.propertiesfile and the specified secret key.CipherTextJavaEncryptor. encrypt(PlainText plaintext)Encrypts the provided plaintext bytes using the cipher transformation specified by the propertyEncryptor.CipherTransformationand the master encryption key as specified by the propertyEncryptor.MasterKeyas defined in theESAPI.propertiesfile.
-