Uses of Class
javax.crypto.Cipher
| Package | Description |
|---|---|
| javax.crypto |
This package provides the classes and interfaces for cryptographic applications implementing algorithms for encryption, decryption, or
key agreement.
|
| org.bouncycastle.jcajce | |
| org.bouncycastle.jcajce.provider.keystore.bc | |
| org.conscrypt |
-
Uses of Cipher in javax.crypto
Subclasses of Cipher in javax.crypto Modifier and Type Class Description classNullCipherThis class provides an identity cipher that does not transform the input data in any way.Methods in javax.crypto that return Cipher Modifier and Type Method Description static CipherCipher. getInstance(String transformation)Creates a new Cipher for the specified transformation.static CipherCipher. getInstance(String transformation, String provider)Creates a new cipher for the specified transformation provided by the specified provider.static CipherCipher. getInstance(String transformation, Provider provider)Creates a new cipher for the specified transformation.Methods in javax.crypto with parameters of type Cipher Modifier and Type Method Description PKCS8EncodedKeySpecEncryptedPrivateKeyInfo. getKeySpec(Cipher cipher)Returns thePKCS8EncodedKeySpecobject extracted from the encrypted data.ObjectSealedObject. getObject(Cipher c)Returns the wrapped object, decrypting it using the specified cipher.Constructors in javax.crypto with parameters of type Cipher Constructor Description CipherInputStream(InputStream is, Cipher c)Creates a newCipherInputStreaminstance for anInputStreamand a cipher.CipherOutputStream(OutputStream os, Cipher c)Creates a newCipherOutputStreaminstance for anOutputStreamand aCipher.SealedObject(Serializable object, Cipher c)Creates a newSealedObjectinstance wrapping the specified object and sealing it using the specified cipher. -
Uses of Cipher in org.bouncycastle.jcajce
Methods in org.bouncycastle.jcajce that return Cipher Modifier and Type Method Description CipherDefaultJcaJceHelper. createCipher(String algorithm)CipherJcaJceHelper. createCipher(String algorithm)CipherNamedJcaJceHelper. createCipher(String algorithm)CipherProviderJcaJceHelper. createCipher(String algorithm) -
Uses of Cipher in org.bouncycastle.jcajce.provider.keystore.bc
Methods in org.bouncycastle.jcajce.provider.keystore.bc that return Cipher Modifier and Type Method Description protected CipherBcKeyStoreSpi. makePBECipher(String algorithm, int mode, char[] password, byte[] salt, int iterationCount) -
Uses of Cipher in org.conscrypt