Home | History | Annotate | Download | only in crypto

Lines Matching refs:Provider

34 import java.security.Provider.Service;
57 // Map<Provider,?> of the providers we already have verified
62 // Map<Provider,?> of the providers currently being verified
97 String provider) throws NoSuchAlgorithmException,
99 Service s = GetInstance.getService(type, algorithm, provider);
102 String msg = "JCE cannot authenticate the provider " + provider;
110 Provider provider) throws NoSuchAlgorithmException {
111 Service s = GetInstance.getService(type, algorithm, provider);
112 Exception ve = JceSecurity.getVerificationResult(provider);
114 String msg = "JCE cannot authenticate the provider "
115 + provider.getName();
155 * Verify if the JAR at URL codeBase is a signed provider JAR file.
160 // Verify the provider JAR file and all
169 * Verify that the provider JAR files are signed properly, which
174 static synchronized Exception getVerificationResult(Provider p) {
201 // return whether this provider is properly signed and can be used by JCE
202 static boolean canUseProvider(Provider p) {