Uses of Class java.security.NoSuchProviderException

Uses in package java.security.cert

Methods which throw type java.security.NoSuchProviderException

CertificateFactory
Gets an instance of the CertificateFactory class representing the specified certificate factory from the specified provider.
CertPathBuilder
CertPathBuilder.getInstance(String algorithm, String provider)
Get an instance of a named CertPathBuilder from the named provider.
CertPathValidator
Get an instance of the given validator from the named provider.
CertStore
Get an instance of the given certificate store from the named provider.
void
Verifies that this Certificate was properly signed with the PublicKey that corresponds to its private key.
void
Verifies that this CRL was properly signed with the PublicKey that corresponds to its private key.
void
Certificate.verify(PublicKey key, String sigProvider)
Verifies that this Certificate was properly signed with the PublicKey that corresponds to its private key and uses the signature engine provided by the provider.
void
X509CRL.verify(PublicKey key, String sigProvider)
Verifies that this CRL was properly signed with the PublicKey that corresponds to its private key and uses the signature engine provided by the provider.

Uses in package javax.net.ssl

Methods which throw type java.security.NoSuchProviderException

KeyManagerFactory
Get an instance of the named key manager factory, from the named provider.
SSLContext
SSLContext.getInstance(String protocol, String provider)
Get an instance of a context for the specified protocol from the named provider.
TrustManagerFactory
Returns an instance of a trust manager factory for the given algorithm from the named provider.

Uses in package javax.crypto

Methods which throw type java.security.NoSuchProviderException

Cipher
Cipher.getInstance(String transformation, String provider)
Creates a new cipher instance for the given transformation and the named provider.
ExemptionMechanism
KeyAgreement
KeyAgreement.getInstance(String algorithm, String provider)
Get an implementation of an algorithm from a named provider.
KeyGenerator
KeyGenerator.getInstance(String algorithm, String provider)
Create a new key generator from the named provider.
Mac
Mac.getInstance(String algorithm, String provider)
Get an instance of the named algorithm from the named provider.
SecretKeyFactory
SecretKeyFactory.getInstance(String algorithm, String provider)
Create a new secret key factory from the named provider.
Object
SealedObject.getObject(Key key, String provider)
Unseal and deserialize this sealed object with the specified key, using a cipher from the named provider.

Uses in package javax.security.cert

Methods which throw type java.security.NoSuchProviderException

void
Verifies the signature of this certificate.
void
Certificate.verify(PublicKey key, String sigProvider)
Verifies the signature of this certificate, using the specified security provider.

Uses in package java.security

Methods which throw type java.security.NoSuchProviderException

AlgorithmParameterGenerator
Generates an AlgorithmParameterGenerator object for the requested algorithm, as supplied from the specified provider, if such a parameter generator is available from the provider.
AlgorithmParameters
Generates a parameter object for the specified algorithm, as supplied by the specified provider, if such an algorithm is available from the provider.

The returned parameter object must be initialized via a call to init(), using an appropriate parameter specification or parameter encoding.

KeyFactory
KeyFactory.getInstance(String algorithm, String provider)
Generates a KeyFactory object for the specified algorithm from the specified provider.
KeyPairGenerator
KeyPairGenerator.getInstance(String algorithm, String provider)
Generates a KeyPairGenerator object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.
KeyStore
KeyStore.getInstance(String type, String provider)
Gets an instance of the KeyStore class representing the specified key store from the specified provider.
MessageDigest
MessageDigest.getInstance(String algorithm, String provider)
Generates a MessageDigest object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.
SecureRandom
SecureRandom.getInstance(String algorithm, String provider)
Returns an instance of a SecureRandom.
Signature
Signature.getInstance(String algorithm, String provider)
Generates a Signature object implementing the specified algorithm, as supplied from the specified provider, if such an algorithm is available from the provider.