Uses of Class
java.security.NoSuchAlgorithmException
-
Uses of NoSuchAlgorithmException in java.security
Methods in java.security that throw NoSuchAlgorithmException Modifier and Type Method Description KeyStore.EntryKeyStoreSpi. engineGetEntry(String alias, KeyStore.ProtectionParameter protParam)Returns theEntrywith the given alias, using the specifiedProtectionParameter.abstract KeyKeyStoreSpi. engineGetKey(String alias, char[] password)Returns the key with the given alias, using the password to recover the key from the store.abstract voidKeyStoreSpi. engineLoad(InputStream stream, char[] password)Loads thisKeyStoreSpifrom the givenInputStream.voidKeyStoreSpi. engineLoad(KeyStore.LoadStoreParameter param)Loads thisKeyStoreSpiusing the specifiedLoadStoreParameter.abstract voidKeyStoreSpi. engineStore(OutputStream stream, char[] password)Writes thisKeyStoreSpito the specifiedOutputStream.voidKeyStoreSpi. engineStore(KeyStore.LoadStoreParameter param)Stores thisKeyStoreSpiusing the specifiedLoadStoreParameter.KeyStore.EntryKeyStore. getEntry(String alias, KeyStore.ProtectionParameter param)Returns theEntrywith the given alias, using the specifiedProtectionParameter.static AlgorithmParameterGeneratorAlgorithmParameterGenerator. getInstance(String algorithm)Returns a new instance ofAlgorithmParameterGeneratorfor the specified algorithm.static AlgorithmParameterGeneratorAlgorithmParameterGenerator. getInstance(String algorithm, String provider)Returns a new instance ofAlgorithmParameterGeneratorfrom the specified provider for the specified algorithm.static AlgorithmParameterGeneratorAlgorithmParameterGenerator. getInstance(String algorithm, Provider provider)Returns a new instance ofAlgorithmParameterGeneratorfrom the specified provider for the specified algorithm.static AlgorithmParametersAlgorithmParameters. getInstance(String algorithm)Returns a new instance ofAlgorithmParametersfor the specified algorithm.static AlgorithmParametersAlgorithmParameters. getInstance(String algorithm, String provider)Returns a new instance ofAlgorithmParametersfrom the specified provider for the specified algorithm.static AlgorithmParametersAlgorithmParameters. getInstance(String algorithm, Provider provider)Returns a new instance ofAlgorithmParametersfrom the specified provider for the specified algorithm.static KeyFactoryKeyFactory. getInstance(String algorithm)Returns a new instance ofKeyFactorythat utilizes the specified algorithm.static KeyFactoryKeyFactory. getInstance(String algorithm, String provider)Returns a new instance ofKeyFactorythat utilizes the specified algorithm from the specified provider.static KeyFactoryKeyFactory. getInstance(String algorithm, Provider provider)Returns a new instance ofKeyFactorythat utilizes the specified algorithm from the specified provider.static KeyPairGeneratorKeyPairGenerator. getInstance(String algorithm)Returns a new instance ofKeyPairGeneratorthat utilizes the specified algorithm.static KeyPairGeneratorKeyPairGenerator. getInstance(String algorithm, String provider)Returns a new instance ofKeyPairGeneratorthat utilizes the specified algorithm from the specified provider.static KeyPairGeneratorKeyPairGenerator. getInstance(String algorithm, Provider provider)Returns a new instance ofKeyPairGeneratorthat utilizes the specified algorithm from the specified provider.static MessageDigestMessageDigest. getInstance(String algorithm)Returns a new instance ofMessageDigestthat utilizes the specified algorithm.static MessageDigestMessageDigest. getInstance(String algorithm, String provider)Returns a new instance ofMessageDigestthat utilizes the specified algorithm from the specified provider.static MessageDigestMessageDigest. getInstance(String algorithm, Provider provider)Returns a new instance ofMessageDigestthat utilizes the specified algorithm from the specified provider.static PolicyPolicy. getInstance(String type, Policy.Parameters params)static PolicyPolicy. getInstance(String type, Policy.Parameters params, String provider)static PolicyPolicy. getInstance(String type, Policy.Parameters params, Provider provider)static SecureRandomSecureRandom. getInstance(String algorithm)Returns a new instance ofSecureRandomthat utilizes the specified algorithm.static SecureRandomSecureRandom. getInstance(String algorithm, String provider)Returns a new instance ofSecureRandomthat utilizes the specified algorithm from the specified provider.static SecureRandomSecureRandom. getInstance(String algorithm, Provider provider)Returns a new instance ofSecureRandomthat utilizes the specified algorithm from the specified provider.static SignatureSignature. getInstance(String algorithm)Returns a new instance ofSignaturethat utilizes the specified algorithm.static SignatureSignature. getInstance(String algorithm, String provider)Returns a new instance ofSignaturethat utilizes the specified algorithm from the specified provider.static SignatureSignature. getInstance(String algorithm, Provider provider)Returns a new instance ofSignaturethat utilizes the specified algorithm from the specified provider.KeyKeyStore. getKey(String alias, char[] password)Returns the key with the given alias, using the password to recover the key from the store.voidKeyStore. load(InputStream stream, char[] password)Initializes thisKeyStorefrom the providedInputStream.voidKeyStore. load(KeyStore.LoadStoreParameter param)Loads thisKeyStoreusing the specifiedLoadStoreParameter.ObjectProvider.Service. newInstance(Object constructorParameter)Creates and returns a new instance of the implementation described by thisService.voidKeyStore. store(OutputStream stream, char[] password)Writes thisKeyStoreto the specifiedOutputStream.voidKeyStore. store(KeyStore.LoadStoreParameter param)Stores thisKeyStoreusing the specifiedLoadStoreParameter. -
Uses of NoSuchAlgorithmException in java.security.cert
Methods in java.security.cert that throw NoSuchAlgorithmException Modifier and Type Method Description static CertPathBuilderCertPathBuilder. getInstance(String algorithm)Creates a newCertPathBuilderinstance with the specified algorithm.static CertPathBuilderCertPathBuilder. getInstance(String algorithm, String provider)Creates a newCertPathBuilderinstance from the specified provider providing the specified algorithm.static CertPathBuilderCertPathBuilder. getInstance(String algorithm, Provider provider)Creates a newCertPathBuilderinstance from the specified provider providing the specified algorithm.static CertPathValidatorCertPathValidator. getInstance(String algorithm)Returns a new certification path validator for the specified algorithm.static CertPathValidatorCertPathValidator. getInstance(String algorithm, String provider)Returns a new certification path validator for the specified algorithm from the specified provider.static CertPathValidatorCertPathValidator. getInstance(String algorithm, Provider provider)Returns a new certification path validator for the specified algorithm from the specified provider.static CertStoreCertStore. getInstance(String type, CertStoreParameters params)Creates a newCertStoreinstance with the specified type and initialized with the specified parameters.static CertStoreCertStore. getInstance(String type, CertStoreParameters params, String provider)Creates a newCertStoreinstance from the specified provider with the specified type and initialized with the specified parameters.static CertStoreCertStore. getInstance(String type, CertStoreParameters params, Provider provider)Creates a newCertStoreinstance from the specified provider with the specified type and initialized with the specified parameters.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 NoSuchAlgorithmException in javax.crypto
Methods in javax.crypto that throw NoSuchAlgorithmException Modifier and Type Method Description protected abstract SecretKeyKeyAgreementSpi. engineGenerateSecret(String algorithm)Generates the shared secret.protected abstract voidCipherSpi. engineSetMode(String mode)Sets the mode for this cipher.protected KeyCipherSpi. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)Unwraps a key using this cipher instance.SecretKeyKeyAgreement. generateSecret(String algorithm)Generates the shared secret.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.static ExemptionMechanismExemptionMechanism. getInstance(String algorithm)Returns a newExemptionMechanisminstance that provides the specified exemption mechanism algorithm.static ExemptionMechanismExemptionMechanism. getInstance(String algorithm, String provider)Returns a newExemptionMechansminstance that provides the specified exemption mechanism algorithm from the specified provider.static ExemptionMechanismExemptionMechanism. getInstance(String algorithm, Provider provider)Returns a newExemptionMechanisminstance that provides the specified exemption mechanism algorithm from the specified provider.static KeyAgreementKeyAgreement. getInstance(String algorithm)Creates a newKeyAgreementfor the specified algorithm.static KeyAgreementKeyAgreement. getInstance(String algorithm, String provider)Creates a newKeyAgreementfor the specified algorithm from the specified provider.static KeyAgreementKeyAgreement. getInstance(String algorithm, Provider provider)Create a newKeyAgreementfor the specified algorithm from the specified provider.static KeyGeneratorKeyGenerator. getInstance(String algorithm)Creates a newKeyGeneratorinstance that provides the specified key algorithm,static KeyGeneratorKeyGenerator. getInstance(String algorithm, String provider)Creates a newKeyGeneratorinstance that provides the specified key algorithm from the specified provider.static KeyGeneratorKeyGenerator. getInstance(String algorithm, Provider provider)Creates a newKeyGeneratorinstance that provides the specified key algorithm from the specified provider.static MacMac. getInstance(String algorithm)Creates a newMacinstance that provides the specified MAC algorithm.static MacMac. getInstance(String algorithm, String provider)Creates a newMacinstance that provides the specified MAC algorithm from the specified provider.static MacMac. getInstance(String algorithm, Provider provider)Creates a newMacinstance that provides the specified MAC algorithm from the specified provider.static SecretKeyFactorySecretKeyFactory. getInstance(String algorithm)Creates a newSecretKeyFactoryinstance for the specified key algorithm.static SecretKeyFactorySecretKeyFactory. getInstance(String algorithm, String provider)Creates a newSecretKeyFactoryinstance for the specified key algorithm from the specifiedprovider.static SecretKeyFactorySecretKeyFactory. getInstance(String algorithm, Provider provider)Creates a newSecretKeyFactoryinstance for the specified key algorithm from the specified provider.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.static intCipher. getMaxAllowedKeyLength(String transformation)Returns the maximum key length for the specified transformation.static AlgorithmParameterSpecCipher. getMaxAllowedParameterSpec(String transformation)Returns the maximum cipher parameter value for the specified transformation.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.KeyCipher. unwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)Unwraps a key using this cipher instance.Constructors in javax.crypto that throw NoSuchAlgorithmException Constructor Description EncryptedPrivateKeyInfo(String encryptionAlgorithmName, byte[] encryptedData)Creates anEncryptedPrivateKeyInfoinstance from an algorithm name and its encrypted data.EncryptedPrivateKeyInfo(AlgorithmParameters algParams, byte[] encryptedData)Creates anEncryptedPrivateKeyInfoinstance from the encryption algorithm parameters an its encrypted data. -
Uses of NoSuchAlgorithmException in javax.net.ssl
Methods in javax.net.ssl that throw NoSuchAlgorithmException Modifier and Type Method Description protected abstract voidKeyManagerFactorySpi. engineInit(KeyStore ks, char[] password)Initializes this instance with the specified key store and password.static SSLContextSSLContext. getDefault()Returns the default SSLContext.static KeyManagerFactoryKeyManagerFactory. getInstance(String algorithm)Creates a newKeyManagerFactoryinstance for the specified key management algorithm.static KeyManagerFactoryKeyManagerFactory. getInstance(String algorithm, String provider)Creates a newKeyManagerFactoryinstance for the specified key management algorithm from the specified provider.static KeyManagerFactoryKeyManagerFactory. getInstance(String algorithm, Provider provider)Creates a newKeyManagerFactoryinstance for the specified key management algorithm from the specified provider.static SSLContextSSLContext. getInstance(String protocol)Creates a newSSLContextinstance for the specified protocol.static SSLContextSSLContext. getInstance(String protocol, String provider)Creates a newSSLContextinstance for the specified protocol from the specified provider.static SSLContextSSLContext. getInstance(String protocol, Provider provider)Creates a newSSLContextinstance for the specified protocol from the specified provider.static TrustManagerFactoryTrustManagerFactory. getInstance(String algorithm)Creates a newTrustManagerFactoryinstance for the specified trust management algorithm.static TrustManagerFactoryTrustManagerFactory. getInstance(String algorithm, String provider)Creates a newTrustManagerFactoryinstance for the specified trust management algorithm from the specified provider.static TrustManagerFactoryTrustManagerFactory. getInstance(String algorithm, Provider provider)Creates a newTrustManagerFactoryinstance for the specified trust management algorithm from the specified provider.voidKeyManagerFactory. init(KeyStore ks, char[] password)Initializes this instance with the specified key store and password. -
Uses of NoSuchAlgorithmException in javax.security.cert
Methods in javax.security.cert that throw NoSuchAlgorithmException 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 NoSuchAlgorithmException in org.apache.harmony.crypto.internal
Methods in org.apache.harmony.crypto.internal that throw NoSuchAlgorithmException Modifier and Type Method Description voidNullCipherSpi. engineSetMode(String arg0)KeyNullCipherSpi. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType) -
Uses of NoSuchAlgorithmException in org.apache.harmony.security.fortress
Methods in org.apache.harmony.security.fortress that throw NoSuchAlgorithmException Modifier and Type Method Description Engine.SpiAndProviderEngine. getInstance(String algorithm, Object param)Finds the appropriate service implementation and returns anSpiAndProviderinstance containing a reference to SPI and itsProviderObjectEngine. getInstance(String algorithm, Provider provider, Object param)Finds the appropriate service implementation and returns and instance of the class that implements corresponding Service Provider Interface. -
Uses of NoSuchAlgorithmException in org.apache.harmony.security.provider.cert
Methods in org.apache.harmony.security.provider.cert that throw NoSuchAlgorithmException 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 NoSuchAlgorithmException in org.apache.harmony.security.provider.crypto
Constructors in org.apache.harmony.security.provider.crypto that throw NoSuchAlgorithmException Constructor Description SHA1withDSA_SignatureImpl()The solo constructor. -
Uses of NoSuchAlgorithmException in org.apache.http.conn.ssl
Constructors in org.apache.http.conn.ssl that throw NoSuchAlgorithmException Constructor Description SSLSocketFactory(String algorithm, KeyStore keystore, String keystorePassword, KeyStore truststore, SecureRandom random, HostNameResolver nameResolver)SSLSocketFactory(KeyStore truststore)SSLSocketFactory(KeyStore keystore, String keystorePassword)SSLSocketFactory(KeyStore keystore, String keystorePassword, KeyStore truststore) -
Uses of NoSuchAlgorithmException in org.bouncycastle.cms
Methods in org.bouncycastle.cms that throw NoSuchAlgorithmException Modifier and Type Method Description CMSSignedDataCMSSignedDataGenerator. generate(String eContentType, CMSProcessable content, boolean encapsulate, String sigProvider)Deprecated.use generate(CMSTypedData, boolean)CMSSignedDataCMSSignedDataGenerator. generate(String eContentType, CMSProcessable content, boolean encapsulate, String sigProvider, boolean addDefaultAttributes)Deprecated.use generate(CMSTypedData, boolean)CMSSignedDataCMSSignedDataGenerator. generate(String eContentType, CMSProcessable content, boolean encapsulate, Provider sigProvider)Deprecated.use generate(CMSTypedData, boolean)CMSSignedDataCMSSignedDataGenerator. generate(String eContentType, CMSProcessable content, boolean encapsulate, Provider sigProvider, boolean addDefaultAttributes)Deprecated.use setDirectSignature() on SignerInformationGenerator.CMSSignedDataCMSSignedDataGenerator. generate(CMSProcessable content, boolean encapsulate, String sigProvider)Deprecated.use generate(CMSTypedData, boolean)CMSSignedDataCMSSignedDataGenerator. generate(CMSProcessable content, boolean encapsulate, Provider sigProvider)Deprecated.use generate(CMSTypedData, boolean)CMSSignedDataCMSSignedDataGenerator. generate(CMSProcessable content, String sigProvider)Deprecated.use generate() method not taking provider.CMSSignedDataCMSSignedDataGenerator. generate(CMSProcessable content, Provider sigProvider)Deprecated.use generate() method not taking provider.SignerInformationStoreCMSSignedDataGenerator. generateCounterSigners(SignerInformation signer, String sigProvider)Deprecated.use generateCounterSigners(SignerInformation)SignerInformationStoreCMSSignedDataGenerator. generateCounterSigners(SignerInformation signer, Provider sigProvider)Deprecated.use generateCounterSigners(SignerInformation)booleanSignerInformation. verify(X509Certificate cert, String sigProvider)Deprecated.use verify(ContentVerifierProvider)booleanSignerInformation. verify(X509Certificate cert, Provider sigProvider)Deprecated.use verify(ContentVerifierProvider)booleanSignerInformation. verify(PublicKey key, String sigProvider)Deprecated.use verify(ContentVerifierProvider)booleanSignerInformation. verify(PublicKey key, Provider sigProvider)Deprecated.use verify(ContentVerifierProvider) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jcajce
-
Uses of NoSuchAlgorithmException in org.bouncycastle.jcajce.provider.asymmetric.ec
Methods in org.bouncycastle.jcajce.provider.asymmetric.ec that throw NoSuchAlgorithmException Modifier and Type Method Description protected SecretKeyKeyAgreementSpi. engineGenerateSecret(String algorithm) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jcajce.provider.asymmetric.rsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.rsa that throw NoSuchAlgorithmException Modifier and Type Method Description protected voidCipherSpi. engineSetMode(String mode) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jcajce.provider.asymmetric.util
Methods in org.bouncycastle.jcajce.provider.asymmetric.util that throw NoSuchAlgorithmException Modifier and Type Method Description protected voidBaseCipherSpi. engineSetMode(String mode) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jcajce.provider.keystore.bc
Methods in org.bouncycastle.jcajce.provider.keystore.bc that throw NoSuchAlgorithmException Modifier and Type Method Description KeyBcKeyStoreSpi. engineGetKey(String alias, char[] password) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jcajce.provider.keystore.pkcs12
Methods in org.bouncycastle.jcajce.provider.keystore.pkcs12 that throw NoSuchAlgorithmException Modifier and Type Method Description KeyPKCS12KeyStoreSpi. engineGetKey(String alias, char[] password)voidPKCS12KeyStoreSpi. engineStore(KeyStore.LoadStoreParameter param) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jcajce.provider.symmetric.util
Methods in org.bouncycastle.jcajce.provider.symmetric.util that throw NoSuchAlgorithmException Modifier and Type Method Description protected voidBaseBlockCipher. engineSetMode(String mode)protected voidBaseWrapCipher. engineSetMode(String mode)protected KeyBaseWrapCipher. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jce
Methods in org.bouncycastle.jce that throw NoSuchAlgorithmException 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 NoSuchAlgorithmException 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 NoSuchAlgorithmException in org.bouncycastle.jce.netscape
Methods in org.bouncycastle.jce.netscape that throw NoSuchAlgorithmException Modifier and Type Method Description voidNetscapeCertRequest. sign(PrivateKey priv_key)voidNetscapeCertRequest. sign(PrivateKey priv_key, SecureRandom rand)booleanNetscapeCertRequest. verify(String challenge)Constructors in org.bouncycastle.jce.netscape that throw NoSuchAlgorithmException Constructor Description NetscapeCertRequest(String challenge, AlgorithmIdentifier signing_alg, PublicKey pub_key) -
Uses of NoSuchAlgorithmException in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider that throw NoSuchAlgorithmException Modifier and Type Method Description voidX509CertificateObject. verify(PublicKey key)voidX509CertificateObject. verify(PublicKey key, String sigProvider)voidX509CRLObject. verify(PublicKey key)voidX509CRLObject. verify(PublicKey key, String sigProvider) -
Uses of NoSuchAlgorithmException in org.bouncycastle.x509
Methods in org.bouncycastle.x509 that throw NoSuchAlgorithmException 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).voidX509AttributeCertificate. verify(PublicKey key, String provider)voidX509V2AttributeCertificate. verify(PublicKey key, String provider)Deprecated. -
Uses of NoSuchAlgorithmException in org.conscrypt
Methods in org.conscrypt that throw NoSuchAlgorithmException Modifier and Type Method Description protected voidOpenSSLCipher.AES. checkSupportedMode(OpenSSLCipher.Mode mode)protected voidOpenSSLCipher.ARC4. checkSupportedMode(OpenSSLCipher.Mode mode)protected abstract voidOpenSSLCipher. checkSupportedMode(OpenSSLCipher.Mode mode)Checks whether the cipher supports this particular ciphermodeand throwsNoSuchAlgorithmExceptionif it doesn't.protected voidOpenSSLCipher.DESEDE. checkSupportedMode(OpenSSLCipher.Mode mode)protected voidKeyManagerFactoryImpl. engineInit(KeyStore ks, char[] password)protected voidOpenSSLCipher. engineSetMode(String modeStr)protected voidOpenSSLCipherRSA. engineSetMode(String mode)protected KeyOpenSSLCipher. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)protected KeyOpenSSLCipherRSA. engineUnwrap(byte[] wrappedKey, String wrappedKeyAlgorithm, int wrappedKeyType)PrivateKeyOpenSSLKey. getPrivateKey()PublicKeyOpenSSLKey. getPublicKey()protected static intHandshakeProtocol. getRSAKeyLength(PublicKey pk)Returns RSA key lengthSecretKeyOpenSSLKey. getSecretKey(String algorithm)voidOpenSSLX509Certificate. verify(PublicKey key)voidOpenSSLX509Certificate. verify(PublicKey key, String sigProvider)voidOpenSSLX509CRL. verify(PublicKey key)voidOpenSSLX509CRL. verify(PublicKey key, String sigProvider)static longNativeCrypto. X509_get_pubkey(long x509ctx)Constructors in org.conscrypt that throw NoSuchAlgorithmException Constructor Description HmacSHA256()HmacSHA384()MD5()MD5RSA()OpenSSLSignatureRawRSA()Creates a new OpenSSLSignature instance for the given algorithm name.SHA1()SHA1DSA()SHA1ECDSA()SHA1RSA()SHA256()SHA256ECDSA()SHA256RSA()SHA384()SHA384ECDSA()SHA384RSA()SHA512()SHA512ECDSA()SHA512RSA()