Uses of Class
org.owasp.esapi.crypto.CipherSpec
-
Packages that use CipherSpec Package Description org.owasp.esapi.crypto This package contains ESAPI cryptography-related classes used throughout ESAPI. -
-
Uses of CipherSpec in org.owasp.esapi.crypto
Methods in org.owasp.esapi.crypto that return CipherSpec Modifier and Type Method Description CipherSpec
CipherSpec. setBlockSize(int blockSize)
Set the block size for thisCipherSpec
.CipherSpec
CipherSpec. setCipherTransformation(java.lang.String cipherXform)
Set the cipher transformation for thisCipherSpec
.CipherSpec
CipherSpec. setIV(byte[] iv)
Set the initialization vector (IV).CipherSpec
CipherSpec. setKeySize(int keySize)
Set the key size for thisCipherSpec
.Constructors in org.owasp.esapi.crypto with parameters of type CipherSpec Constructor Description CipherText(CipherSpec cipherSpec)
Construct from aCipherSpec
object.CipherText(CipherSpec cipherSpec, byte[] cipherText)
Construct from aCipherSpec
object and the raw ciphertext.
-