Uses of Class
java.security.InvalidKeyException
-
Uses of InvalidKeyException in java.security
Methods in java.security that throw InvalidKeyException Modifier and Type Method Description protected abstract voidSignatureSpi. engineInitSign(PrivateKey privateKey)Initializes thisSignatureSpiinstance for signing, using the private key of the identity whose signature is going to be generated.protected voidSignatureSpi. engineInitSign(PrivateKey privateKey, SecureRandom random)Initializes thisSignatureSpiinstance for signing, using the private key of the identity whose signature is going to be generated and the specified source of randomness.protected abstract voidSignatureSpi. engineInitVerify(PublicKey publicKey)Initializes thisSignatureSpiinstance for signature verification, using the public key of the identity whose signature is going to be verified.protected abstract KeyKeyFactorySpi. engineTranslateKey(Key key)Translates the given key into a key from this key factory.voidSignature. initSign(PrivateKey privateKey)Initializes thisSignatureinstance for signing, using the private key of the identity whose signature is going to be generated.voidSignature. initSign(PrivateKey privateKey, SecureRandom random)Initializes thisSignatureinstance for signing, using the private key of the identity whose signature is going to be generated and the specified source of randomness.voidSignature. initVerify(Certificate certificate)Initializes thisSignatureinstance for signature verification, using the certificate of the identity whose signature is going to be verified.voidSignature. initVerify(PublicKey publicKey)Initializes thisSignatureinstance for signature verification, using the public key of the identity whose signature is going to be verified.KeyKeyFactory. translateKey(Key key)Translates the given key into a key from this key factory.booleanSignedObject. verify(PublicKey verificationKey, Signature verificationEngine)Indicates whether the contained signature for the encapsulated object is valid.Constructors in java.security that throw InvalidKeyException Constructor Description SignedObject(Serializable object, PrivateKey signingKey, Signature signingEngine)Constructs a new instance ofSignedObjectwith the target object, the private key and the engine to compute the signature. -
Uses of InvalidKeyException in java.security.cert
Methods in java.security.cert that throw InvalidKeyException Modifier and Type Method Description abstract voidCertificate. verify(PublicKey key)Verifies that this certificate was signed with the given public key.abstract voidCertificate. verify(PublicKey key, String sigProvider)Verifies that this certificate was signed with the given public key.abstract voidX509CRL. verify(PublicKey key)Verifies this CRL by verifying that this CRL was signed with the corresponding private key to the specified public key.abstract voidX509CRL. verify(PublicKey key, String sigProvider)Verifies this CRL by verifying that this CRL was signed with the corresponding private key to the specified public key. -
Uses of InvalidKeyException in javax.crypto
Methods in javax.crypto that throw InvalidKeyException Modifier and Type Method Description KeyKeyAgreement. doPhase(Key key, boolean lastPhase)Does the next (or the last) phase of the key agreement, using the specified key.protected abstract KeyKeyAgreementSpi. engineDoPhase(Key key, boolean lastPhase)Does the next (or the last) phase of the key agreement, using the specified key.protected abstract SecretKeyKeyAgreementSpi. engineGenerateSecret(String algorithm)Generates the shared secret.protected intCipherSpi. engineGetKeySize(Key key)Returns the size of a specified key object in bits.protected abstract voidCipherSpi. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)Initializes this cipher instance with the specified key, algorithm parameters and a source of randomness.protected abstract voidCipherSpi. engineInit(int opmode, Key key, SecureRandom random)Initializes this cipher instance with the specified key and a source of randomness.protected abstract voidCipherSpi. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)Initializes this cipher instance with the specified key, algorithm parameters and a source of randomness.protected abstract voidExemptionMechanismSpi. engineInit(Key key)Initializes thisExemptionMechanisminstance with the specified key.protected abstract voidExemptionMechanismSpi. engineInit(Key key, AlgorithmParameters params)Initializes thisExemptionMechanisminstance with the specified key and algorithm parameters.protected abstract voidExemptionMechanismSpi. engineInit(Key key, AlgorithmParameterSpec params)Initializes thisExemptionMechanisminstance with the specified key and algorithm parameters.protected abstract voidKeyAgreementSpi. engineInit(Key key, SecureRandom random)Initializes thisKeyAgreementSpiwith the specified key and the specified randomness source.protected abstract voidKeyAgreementSpi. engineInit(Key key, AlgorithmParameterSpec params, SecureRandom random)Initializes thisKeyAgreementSpiwith the specified key, algorithm parameters and randomness source.protected abstract voidMacSpi. engineInit(Key key, AlgorithmParameterSpec params)Initializes thisMacSpiinstance with the specified key and algorithm parameters.protected abstract SecretKeySecretKeyFactorySpi. engineTranslateKey(SecretKey key)Translates the specified secret key into an instance of the corresponding key from the provider of this key factory.protected KeyCipherSpi. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)Unwraps a key using this cipher instance.protected byte[]CipherSpi. engineWrap(Key key)Wraps a key using this cipher instance.SecretKeyKeyAgreement. generateSecret(String algorithm)Generates the shared secret.PKCS8EncodedKeySpecEncryptedPrivateKeyInfo. getKeySpec(Key decryptKey)Returns thePKCS8EncodedKeySpecobject extracted from the encrypted data.PKCS8EncodedKeySpecEncryptedPrivateKeyInfo. getKeySpec(Key decryptKey, String providerName)Returns thePKCS8EncodedKeySpecobject extracted from the encrypted data.PKCS8EncodedKeySpecEncryptedPrivateKeyInfo. getKeySpec(Key decryptKey, Provider provider)Returns thePKCS8EncodedKeySpecobject extracted from the encrypted data.ObjectSealedObject. getObject(Key key)Returns the wrapped object, decrypting it using the specified key.ObjectSealedObject. getObject(Key key, String provider)Returns the wrapped object, decrypting it using the specified key.voidCipher. init(int opmode, Certificate certificate)Initializes this cipher instance with the public key from the specified certificate.voidCipher. init(int opmode, Certificate certificate, SecureRandom random)Initializes this cipher instance with the public key from the specified certificate and a source of randomness.voidCipher. init(int opmode, Key key)Initializes this cipher instance with the specified key.voidCipher. init(int opmode, Key key, AlgorithmParameters params)Initializes this cipher instance with the specified key and algorithm parameters.voidCipher. init(int opmode, Key key, AlgorithmParameters params, SecureRandom random)Initializes this cipher instance with the specified key, algorithm parameters and a source of randomness.voidCipher. init(int opmode, Key key, SecureRandom random)Initializes this cipher instance with the specified key and a source of randomness.voidCipher. init(int opmode, Key key, AlgorithmParameterSpec params)Initializes this cipher instance with the specified key and algorithm parameters.voidCipher. init(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)Initializes this cipher instance with the specified key, algorithm parameters and a source of randomness.voidExemptionMechanism. init(Key key)Initializes thisExemptionMechanisminstance with the specified key.voidExemptionMechanism. init(Key key, AlgorithmParameters param)Initializes thisExemptionMechanisminstance with the specified key and algorithm parameters.voidExemptionMechanism. init(Key key, AlgorithmParameterSpec param)Initializes thisExemptionMechanisminstance with the specified key and algorithm parameters.voidKeyAgreement. init(Key key)Initializes thisKeyAgreementwith the specified key.voidKeyAgreement. init(Key key, SecureRandom random)Initializes thisKeyAgreementwith the specified key and the specified randomness source.voidKeyAgreement. init(Key key, AlgorithmParameterSpec params)Initializes thisKeyAgreementwith the specified key and the algorithm parameters.voidKeyAgreement. init(Key key, AlgorithmParameterSpec params, SecureRandom random)Initializes thisKeyAgreementwith the specified key, algorithm parameters and randomness source.voidMac. init(Key key)Initializes thisMacinstance with the specified key.voidMac. init(Key key, AlgorithmParameterSpec params)Initializes thisMacinstance with the specified key and algorithm parameters.SecretKeySecretKeyFactory. translateKey(SecretKey key)Translates the specified secret key into an instance of the corresponding key from the provider of this key factory.KeyCipher. unwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)Unwraps a key using this cipher instance.byte[]Cipher. wrap(Key key)Wraps a key using this cipher instance. -
Uses of InvalidKeyException in javax.crypto.spec
Methods in javax.crypto.spec that throw InvalidKeyException Modifier and Type Method Description static booleanDESedeKeySpec. isParityAdjusted(byte[] key, int offset)Returns whether the specified key data starting atoffsetis parity-adjusted.static booleanDESKeySpec. isParityAdjusted(byte[] key, int offset)Returns whether the specified key data starting atoffsetis parity-adjusted.static booleanDESKeySpec. isWeak(byte[] key, int offset)Returns whether the specified key data starting atoffsetis weak or semi-weak.Constructors in javax.crypto.spec that throw InvalidKeyException Constructor Description DESedeKeySpec(byte[] key)Creates a newDESedeKeySpecinstance from the first 24 (DESedeKeySpec.DES_EDE_KEY_LEN) bytes of the specified key data.DESedeKeySpec(byte[] key, int offset)Creates a newDESedeKeySpecinstance from the first 24 (DESedeKeySpec.DES_EDE_KEY_LEN) bytes of the specified key data starting atoffset.DESKeySpec(byte[] key)Creates a newDESKeySpecfrom the first 8 bytes of the specified key data.DESKeySpec(byte[] key, int offset)Creates a newDESKeySpecfrom the first 8 bytes of the specified key data starting atoffset. -
Uses of InvalidKeyException in javax.security.cert
Methods in javax.security.cert that throw InvalidKeyException Modifier and Type Method Description abstract voidCertificate. verify(PublicKey key)Verifies that this certificate was signed with the given public key.abstract voidCertificate. verify(PublicKey key, String sigProvider)Verifies that this certificate was signed with the given public key. -
Uses of InvalidKeyException in org.apache.harmony.crypto.internal
Methods in org.apache.harmony.crypto.internal that throw InvalidKeyException Modifier and Type Method Description intNullCipherSpi. engineGetKeySize(Key key)voidNullCipherSpi. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)voidNullCipherSpi. engineInit(int opmode, Key key, SecureRandom random)voidNullCipherSpi. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)KeyNullCipherSpi. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)byte[]NullCipherSpi. engineWrap(Key key) -
Uses of InvalidKeyException in org.apache.harmony.security.provider.cert
Methods in org.apache.harmony.security.provider.cert that throw InvalidKeyException Modifier and Type Method Description voidX509CertImpl. verify(PublicKey key)voidX509CertImpl. verify(PublicKey key, String sigProvider)voidX509CRLImpl. verify(PublicKey key)voidX509CRLImpl. verify(PublicKey key, String sigProvider) -
Uses of InvalidKeyException in org.apache.harmony.security.provider.crypto
Methods in org.apache.harmony.security.provider.crypto that throw InvalidKeyException Modifier and Type Method Description protected voidSHA1withDSA_SignatureImpl. engineInitSign(PrivateKey privateKey)Initializes this signature object with PrivateKey object passed as argument to the method.protected voidSHA1withDSA_SignatureImpl. engineInitVerify(PublicKey publicKey)Initializes this signature object with PublicKey object passed as argument to the method.protected KeyDSAKeyFactoryImpl. engineTranslateKey(Key key)The method generates a DSAPublicKey object from the provided key. -
Uses of InvalidKeyException in org.bouncycastle.jcajce.provider.asymmetric.dh
Methods in org.bouncycastle.jcajce.provider.asymmetric.dh that throw InvalidKeyException Modifier and Type Method Description protected KeyKeyAgreementSpi. engineDoPhase(Key key, boolean lastPhase)protected voidKeyAgreementSpi. engineInit(Key key, SecureRandom random)protected voidKeyAgreementSpi. engineInit(Key key, AlgorithmParameterSpec params, SecureRandom random)protected KeyKeyFactorySpi. engineTranslateKey(Key key) -
Uses of InvalidKeyException in org.bouncycastle.jcajce.provider.asymmetric.dsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.dsa that throw InvalidKeyException Modifier and Type Method Description protected voidDSASigner. engineInitSign(PrivateKey privateKey)protected voidDSASigner. engineInitSign(PrivateKey privateKey, SecureRandom random)protected voidDSASigner. engineInitVerify(PublicKey publicKey)protected KeyKeyFactorySpi. engineTranslateKey(Key key)static AsymmetricKeyParameterDSAUtil. generatePrivateKeyParameter(PrivateKey key)static AsymmetricKeyParameterDSAUtil. generatePublicKeyParameter(PublicKey key) -
Uses of InvalidKeyException in org.bouncycastle.jcajce.provider.asymmetric.ec
Methods in org.bouncycastle.jcajce.provider.asymmetric.ec that throw InvalidKeyException Modifier and Type Method Description protected KeyKeyAgreementSpi. engineDoPhase(Key key, boolean lastPhase)protected voidKeyAgreementSpi. engineInit(Key key, SecureRandom random)protected voidKeyAgreementSpi. engineInit(Key key, AlgorithmParameterSpec params, SecureRandom random)protected voidSignatureSpi. engineInitSign(PrivateKey privateKey)protected voidSignatureSpi. engineInitVerify(PublicKey publicKey)protected KeyKeyFactorySpi. engineTranslateKey(Key key) -
Uses of InvalidKeyException in org.bouncycastle.jcajce.provider.asymmetric.rsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.rsa that throw InvalidKeyException Modifier and Type Method Description protected voidCipherSpi. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidCipherSpi. engineInit(int opmode, Key key, SecureRandom random)protected voidCipherSpi. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)protected voidDigestSignatureSpi. engineInitSign(PrivateKey privateKey)protected voidDigestSignatureSpi. engineInitVerify(PublicKey publicKey)protected KeyKeyFactorySpi. engineTranslateKey(Key key) -
Uses of InvalidKeyException in org.bouncycastle.jcajce.provider.asymmetric.util
Methods in org.bouncycastle.jcajce.provider.asymmetric.util that throw InvalidKeyException Modifier and Type Method Description protected KeyBaseCipherSpi. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)protected byte[]BaseCipherSpi. engineWrap(Key key)static AsymmetricKeyParameterDHUtil. generatePrivateKeyParameter(PrivateKey key)static AsymmetricKeyParameterECUtil. generatePrivateKeyParameter(PrivateKey key)static AsymmetricKeyParameterDHUtil. generatePublicKeyParameter(PublicKey key)static AsymmetricKeyParameterECUtil. generatePublicKeyParameter(PublicKey key) -
Uses of InvalidKeyException in org.bouncycastle.jcajce.provider.asymmetric.x509
Methods in org.bouncycastle.jcajce.provider.asymmetric.x509 that throw InvalidKeyException Modifier and Type Method Description protected KeyKeyFactory. engineTranslateKey(Key key) -
Uses of InvalidKeyException in org.bouncycastle.jcajce.provider.symmetric.util
Methods in org.bouncycastle.jcajce.provider.symmetric.util that throw InvalidKeyException Modifier and Type Method Description protected voidBaseBlockCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidBaseBlockCipher. engineInit(int opmode, Key key, SecureRandom random)protected voidBaseBlockCipher. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)protected voidBaseMac. engineInit(Key key, AlgorithmParameterSpec params)protected voidBaseStreamCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidBaseStreamCipher. engineInit(int opmode, Key key, SecureRandom random)protected voidBaseStreamCipher. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)protected voidBaseWrapCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidBaseWrapCipher. engineInit(int opmode, Key key, SecureRandom random)protected voidBaseWrapCipher. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)protected SecretKeyBaseSecretKeyFactory. engineTranslateKey(SecretKey key)protected KeyBaseWrapCipher. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)protected byte[]BaseWrapCipher. engineWrap(Key key) -
Uses of InvalidKeyException in org.bouncycastle.jce
Methods in org.bouncycastle.jce that throw InvalidKeyException Modifier and Type Method Description PublicKeyPKCS10CertificationRequest. getPublicKey()Deprecated.return the public key associated with the certification request - the public key is created using the BC provider.PublicKeyPKCS10CertificationRequest. getPublicKey(String provider)Deprecated.booleanPKCS10CertificationRequest. verify()Deprecated.verify the request using the BC provider.booleanPKCS10CertificationRequest. verify(String provider)Deprecated.verify the request using the passed in provider.booleanPKCS10CertificationRequest. verify(PublicKey pubKey, String provider)Deprecated.verify the request using the passed in public key and the provider..Constructors in org.bouncycastle.jce that throw InvalidKeyException Constructor Description PKCS10CertificationRequest(String signatureAlgorithm, X500Principal subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey)Deprecated.create a PKCS10 certfication request using the BC provider.PKCS10CertificationRequest(String signatureAlgorithm, X500Principal subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey, String provider)Deprecated.create a PKCS10 certfication request using the named provider.PKCS10CertificationRequest(String signatureAlgorithm, X509Name subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey)Deprecated.create a PKCS10 certfication request using the BC provider.PKCS10CertificationRequest(String signatureAlgorithm, X509Name subject, PublicKey key, ASN1Set attributes, PrivateKey signingKey, String provider)Deprecated.create a PKCS10 certfication request using the named provider. -
Uses of InvalidKeyException in org.bouncycastle.jce.netscape
Methods in org.bouncycastle.jce.netscape that throw InvalidKeyException Modifier and Type Method Description voidNetscapeCertRequest. sign(PrivateKey priv_key)voidNetscapeCertRequest. sign(PrivateKey priv_key, SecureRandom rand)booleanNetscapeCertRequest. verify(String challenge) -
Uses of InvalidKeyException in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider that throw InvalidKeyException Modifier and Type Method Description protected voidJCEStreamCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidJCEStreamCipher. engineInit(int opmode, Key key, SecureRandom random)protected voidJCEStreamCipher. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)protected KeyJCEStreamCipher. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)protected byte[]JCEStreamCipher. engineWrap(Key key)static AsymmetricKeyParameterDHUtil. generatePrivateKeyParameter(PrivateKey key)static AsymmetricKeyParameterDHUtil. generatePublicKeyParameter(PublicKey key)voidX509CertificateObject. verify(PublicKey key)voidX509CertificateObject. verify(PublicKey key, String sigProvider)voidX509CRLObject. verify(PublicKey key)voidX509CRLObject. verify(PublicKey key, String sigProvider) -
Uses of InvalidKeyException in org.bouncycastle.x509
Methods in org.bouncycastle.x509 that throw InvalidKeyException Modifier and Type Method Description X509CertificateX509V1CertificateGenerator. generate(PrivateKey key)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider.X509CertificateX509V1CertificateGenerator. generate(PrivateKey key, String provider)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing, and the passed in source of randomness (if required).X509CertificateX509V1CertificateGenerator. generate(PrivateKey key, String provider, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing, and the passed in source of randomness (if required).X509CertificateX509V1CertificateGenerator. generate(PrivateKey key, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider and the passed in source of randomnessX509CertificateX509V3CertificateGenerator. generate(PrivateKey key)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider.X509CertificateX509V3CertificateGenerator. generate(PrivateKey key, String provider)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing.X509CertificateX509V3CertificateGenerator. generate(PrivateKey key, String provider, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject, using the passed in provider for the signing and the supplied source of randomness, if required.X509CertificateX509V3CertificateGenerator. generate(PrivateKey key, SecureRandom random)Deprecated.generate an X509 certificate, based on the current issuer and subject using the default provider, and the passed in source of randomness (if required).X509CertificateX509V1CertificateGenerator. generateX509Certificate(PrivateKey key)Deprecated.use generate(key, "BC")X509CertificateX509V1CertificateGenerator. generateX509Certificate(PrivateKey key, String provider)Deprecated.use generate()X509CertificateX509V1CertificateGenerator. generateX509Certificate(PrivateKey key, String provider, SecureRandom random)Deprecated.use generate()X509CertificateX509V1CertificateGenerator. generateX509Certificate(PrivateKey key, SecureRandom random)Deprecated.use generate(key, random, "BC")X509CertificateX509V3CertificateGenerator. generateX509Certificate(PrivateKey key)Deprecated.use generate(key, "BC")X509CertificateX509V3CertificateGenerator. generateX509Certificate(PrivateKey key, String provider)Deprecated.use generate()X509CertificateX509V3CertificateGenerator. generateX509Certificate(PrivateKey key, String provider, SecureRandom random)Deprecated.use generate()X509CertificateX509V3CertificateGenerator. generateX509Certificate(PrivateKey key, SecureRandom random)Deprecated.use generate(key, random, "BC")voidX509AttributeCertificate. verify(PublicKey key, String provider)voidX509V2AttributeCertificate. verify(PublicKey key, String provider)Deprecated. -
Uses of InvalidKeyException in org.bouncycastle.x509.extension
Constructors in org.bouncycastle.x509.extension that throw InvalidKeyException Constructor Description AuthorityKeyIdentifierStructure(PublicKey pubKey)Deprecated.Create an AuthorityKeyIdentifier using just the hash of the public key.SubjectKeyIdentifierStructure(PublicKey pubKey)Deprecated. -
Uses of InvalidKeyException in org.conscrypt
Methods in org.conscrypt that throw InvalidKeyException Modifier and Type Method Description protected voidOpenSSLCipher.AES. checkSupportedKeySize(int keyLength)protected voidOpenSSLCipher.ARC4. checkSupportedKeySize(int keySize)protected abstract voidOpenSSLCipher. checkSupportedKeySize(int keySize)Checks whether the cipher supports this particularkeySize(in bytes) and throwsInvalidKeyExceptionif it doesn't.protected voidOpenSSLCipher.DESEDE. checkSupportedKeySize(int keySize)KeyOpenSSLECDHKeyAgreement. engineDoPhase(Key key, boolean lastPhase)protected voidOpenSSLCipher. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidOpenSSLCipher. engineInit(int opmode, Key key, SecureRandom random)protected voidOpenSSLCipher. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)protected voidOpenSSLCipherRSA. engineInit(int opmode, Key key, AlgorithmParameters params, SecureRandom random)protected voidOpenSSLCipherRSA. engineInit(int opmode, Key key, SecureRandom random)protected voidOpenSSLCipherRSA. engineInit(int opmode, Key key, AlgorithmParameterSpec params, SecureRandom random)protected voidOpenSSLECDHKeyAgreement. engineInit(Key key, SecureRandom random)protected voidOpenSSLECDHKeyAgreement. engineInit(Key key, AlgorithmParameterSpec params, SecureRandom random)protected voidOpenSSLMac. engineInit(Key key, AlgorithmParameterSpec params)protected voidOpenSSLSignature. engineInitSign(PrivateKey privateKey)protected voidOpenSSLSignatureRawRSA. engineInitSign(PrivateKey privateKey)protected voidOpenSSLSignature. engineInitVerify(PublicKey publicKey)protected voidOpenSSLSignatureRawRSA. engineInitVerify(PublicKey publicKey)protected KeyOpenSSLDSAKeyFactory. engineTranslateKey(Key key)protected KeyOpenSSLECKeyFactory. engineTranslateKey(Key key)protected KeyOpenSSLRSAKeyFactory. engineTranslateKey(Key key)protected KeyOpenSSLCipher. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)protected KeyOpenSSLCipherRSA. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)protected byte[]OpenSSLCipher. engineWrap(Key key)protected byte[]OpenSSLCipherRSA. engineWrap(Key key)static OpenSSLKeyOpenSSLKey. fromPrivateKey(PrivateKey key)static OpenSSLKeyOpenSSLECPrivateKey. getInstance(ECPrivateKey ecPrivateKey)static OpenSSLKeyOpenSSLECPublicKey. getInstance(ECPublicKey ecPublicKey)static OpenSSLKeyOpenSSLSecretKey. getInstance(SecretKey key)PrivateKeyOpenSSLEngine. getPrivateKeyById(String id)SecretKeyOpenSSLEngine. getSecretKeyById(String id, String algorithm)voidOpenSSLX509Certificate. verify(PublicKey key)voidOpenSSLX509Certificate. verify(PublicKey key, String sigProvider)voidOpenSSLX509CRL. verify(PublicKey key)voidOpenSSLX509CRL. verify(PublicKey key, String sigProvider)