Uses of Class
org.bouncycastle.operator.GenericKey
-
Packages that use GenericKey Package Description org.bouncycastle.cms A package for processing RFC 3852 Cryptographic Message Syntax (CMS) objects - also referred to as PKCS#7 (formerly RFC 2630, 3369).org.bouncycastle.cms.bc CMS operator implementations for doing message encryption, signing, digesting, and MACing operations using the BC lightweight API.org.bouncycastle.cms.jcajce CMS operator implementations for doing message encryption, signing, digesting, and MACing operations using the JCA and the JCE.org.bouncycastle.operator Basic operator definitions for doing encryption, signing, and digest operations.org.bouncycastle.operator.bc Basic operator implementations for doing encryption, signing, and digest operations using the BC lightweight API.org.bouncycastle.operator.jcajce Basic operator implementations for doing encryption, signing, and digest operations using the JCA and the JCE. -
-
Uses of GenericKey in org.bouncycastle.cms
Methods in org.bouncycastle.cms with parameters of type GenericKey Modifier and Type Method Description org.bouncycastle.asn1.cms.RecipientInfo
KEKRecipientInfoGenerator. generate(GenericKey contentEncryptionKey)
org.bouncycastle.asn1.cms.RecipientInfo
KeyAgreeRecipientInfoGenerator. generate(GenericKey contentEncryptionKey)
org.bouncycastle.asn1.cms.RecipientInfo
KeyTransRecipientInfoGenerator. generate(GenericKey contentEncryptionKey)
org.bouncycastle.asn1.cms.RecipientInfo
PasswordRecipientInfoGenerator. generate(GenericKey contentEncryptionKey)
org.bouncycastle.asn1.cms.RecipientInfo
RecipientInfoGenerator. generate(GenericKey contentEncryptionKey)
protected abstract byte[]
PasswordRecipientInfoGenerator. generateEncryptedBytes(org.bouncycastle.asn1.x509.AlgorithmIdentifier algorithm, byte[] derivedKey, GenericKey contentEncryptionKey)
protected abstract org.bouncycastle.asn1.ASN1Sequence
KeyAgreeRecipientInfoGenerator. generateRecipientEncryptedKeys(org.bouncycastle.asn1.x509.AlgorithmIdentifier keyAgreeAlgorithm, org.bouncycastle.asn1.x509.AlgorithmIdentifier keyEncAlgorithm, GenericKey contentEncryptionKey)
-
Uses of GenericKey in org.bouncycastle.cms.bc
Methods in org.bouncycastle.cms.bc with parameters of type GenericKey Modifier and Type Method Description byte[]
BcPasswordRecipientInfoGenerator. generateEncryptedBytes(org.bouncycastle.asn1.x509.AlgorithmIdentifier keyEncryptionAlgorithm, byte[] derivedKey, GenericKey contentEncryptionKey)
-
Uses of GenericKey in org.bouncycastle.cms.jcajce
Methods in org.bouncycastle.cms.jcajce with parameters of type GenericKey Modifier and Type Method Description byte[]
JcePasswordRecipientInfoGenerator. generateEncryptedBytes(org.bouncycastle.asn1.x509.AlgorithmIdentifier keyEncryptionAlgorithm, byte[] derivedKey, GenericKey contentEncryptionKey)
org.bouncycastle.asn1.ASN1Sequence
JceKeyAgreeRecipientInfoGenerator. generateRecipientEncryptedKeys(org.bouncycastle.asn1.x509.AlgorithmIdentifier keyAgreeAlgorithm, org.bouncycastle.asn1.x509.AlgorithmIdentifier keyEncryptionAlgorithm, GenericKey contentEncryptionKey)
Key
EnvelopedDataHelper. getJceKey(org.bouncycastle.asn1.ASN1ObjectIdentifier algorithm, GenericKey key)
-
Uses of GenericKey in org.bouncycastle.operator
Methods in org.bouncycastle.operator that return GenericKey Modifier and Type Method Description GenericKey
KeyUnwrapper. generateUnwrappedKey(org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptionKeyAlgorithm, byte[] encryptedKey)
GenericKey
MacCalculator. getKey()
Return the key used for calculating the MAC.GenericKey
OutputEncryptor. getKey()
Return the key used for encrypting the output.Methods in org.bouncycastle.operator with parameters of type GenericKey Modifier and Type Method Description byte[]
KeyWrapper. generateWrappedKey(GenericKey encryptionKey)
-
Uses of GenericKey in org.bouncycastle.operator.bc
Methods in org.bouncycastle.operator.bc that return GenericKey Modifier and Type Method Description GenericKey
BcAsymmetricKeyUnwrapper. generateUnwrappedKey(org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptedKeyAlgorithm, byte[] encryptedKey)
GenericKey
BcSymmetricKeyUnwrapper. generateUnwrappedKey(org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptedKeyAlgorithm, byte[] encryptedKey)
Methods in org.bouncycastle.operator.bc with parameters of type GenericKey Modifier and Type Method Description byte[]
BcAsymmetricKeyWrapper. generateWrappedKey(GenericKey encryptionKey)
byte[]
BcSymmetricKeyWrapper. generateWrappedKey(GenericKey encryptionKey)
-
Uses of GenericKey in org.bouncycastle.operator.jcajce
Subclasses of GenericKey in org.bouncycastle.operator.jcajce Modifier and Type Class Description class
JceGenericKey
Methods in org.bouncycastle.operator.jcajce that return GenericKey Modifier and Type Method Description GenericKey
JceAsymmetricKeyUnwrapper. generateUnwrappedKey(org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptedKeyAlgorithm, byte[] encryptedKey)
GenericKey
JceKTSKeyUnwrapper. generateUnwrappedKey(org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptedKeyAlgorithm, byte[] encryptedKey)
GenericKey
JceSymmetricKeyUnwrapper. generateUnwrappedKey(org.bouncycastle.asn1.x509.AlgorithmIdentifier encryptedKeyAlgorithm, byte[] encryptedKey)
Methods in org.bouncycastle.operator.jcajce with parameters of type GenericKey Modifier and Type Method Description byte[]
JceAsymmetricKeyWrapper. generateWrappedKey(GenericKey encryptionKey)
byte[]
JceKTSKeyWrapper. generateWrappedKey(GenericKey encryptionKey)
byte[]
JceSymmetricKeyWrapper. generateWrappedKey(GenericKey encryptionKey)
-