Searched refs:provider (Results 151 - 175 of 484) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DOpen.java57 SelectorProvider sp = SelectorProvider.provider();
81 SelectorProvider sp = SelectorProvider.provider();
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/ldap/
H A DLDAPCertStoreHelper.java26 package sun.security.provider.certpath.ldap;
38 import sun.security.provider.certpath.CertStoreHelper;
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DBsdFileSystem.java40 BsdFileSystem(UnixFileSystemProvider provider, String dir) { argument
41 super(provider, dir);
H A DLinuxFileSystem.java38 LinuxFileSystem(UnixFileSystemProvider provider, String dir) { argument
39 super(provider, dir);
/openjdk7/jdk/test/sun/security/rsa/
H A DTestKeyPairGenerator.java41 private static Provider provider; field in class:TestKeyPairGenerator
47 Signature s = Signature.getInstance(algorithm, provider);
75 Signature sig = Signature.getInstance("MD5withRSA", provider);
99 provider = Security.getProvider("SunRsaSign");
106 KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", provider);
/openjdk7/jdk/src/solaris/classes/sun/security/provider/
H A DNativePRNG.java26 package sun.security.provider;
144 private volatile sun.security.provider.SecureRandom mixRandom;
173 private sun.security.provider.SecureRandom getMixRandom() {
174 sun.security.provider.SecureRandom r = mixRandom;
179 r = new sun.security.provider.SecureRandom();
/openjdk7/jdk/test/sun/security/pkcs11/KeyStore/
H A DSecretKeysBasic.java50 private static Provider provider; field in class:SecretKeysBasic
57 this.provider = p;
70 KeyGenerator kg = KeyGenerator.getInstance("DESede", provider);
107 provider);
138 ks = KeyStore.getInstance(KS_TYPE, provider);
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DTestKeyPairGenerator.java42 private static Provider provider; field in class:TestKeyPairGenerator
48 Signature s = Signature.getInstance(algorithm, provider);
76 Signature sig = Signature.getInstance("MD5withRSA", provider);
100 provider = p;
107 KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", provider);
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java131 // The provider
132 Provider provider; field in class:Signature
255 sig.provider = instance.provider;
265 signatureInfo.put("sun.security.provider.DSA$RawDSA", TRUE);
266 signatureInfo.put("sun.security.provider.DSA$SHA1withDSA", TRUE);
294 debug.println("Delayed provider selection may not be "
312 * SignatureSpi implementation from the specified provider
313 * is returned. The specified provider must be registered
314 * in the security provider lis
341 getInstance(String algorithm, String provider) argument
389 getInstance(String algorithm, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DJceSecurity.java95 String provider) throws NoSuchAlgorithmException,
97 Service s = GetInstance.getService(type, algorithm, provider);
100 String msg = "JCE cannot authenticate the provider " + provider;
108 Provider provider) throws NoSuchAlgorithmException {
109 Service s = GetInstance.getService(type, algorithm, provider);
110 Exception ve = JceSecurity.getVerificationResult(provider);
112 String msg = "JCE cannot authenticate the provider "
113 + provider.getName();
153 * Verify if the JAR at URL codeBase is a signed provider JA
94 getInstance(String type, Class clazz, String algorithm, String provider) argument
107 getInstance(String type, Class clazz, String algorithm, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousFileChannel.java208 * provider that created the {@code Path}.
226 * If the {@code file} is associated with a provider that does not
235 * In the case of the default provider, the {@link
247 FileSystemProvider provider = file.getFileSystem().provider();
248 return provider.newAsynchronousFileChannel(file, options, executor, attrs);
281 * If the {@code file} is associated with a provider that does not
289 * In the case of the default provider, the {@link
H A DFileChannel.java249 * provider that created the {@code Path}.
264 * If the {@code path} is associated with a provider that does not
273 * In the case of the default provider, the {@link
286 FileSystemProvider provider = path.getFileSystem().provider();
287 return provider.newFileChannel(path, options, attrs);
313 * If the {@code path} is associated with a provider that does not
321 * In the case of the default provider, the {@link
/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestMasterSecret.java54 public void main(Provider provider) throws Exception { argument
55 if (provider.getService("KeyGenerator", "SunTlsMasterSecret") == null) {
56 System.out.println("Not supported by provider, skipping");
108 KeyGenerator.getInstance("SunTlsMasterSecret", provider);
H A DTestPRF.java53 public void main(Provider provider) throws Exception { argument
54 if (provider.getService("KeyGenerator", "SunTlsPrf") == null) {
97 KeyGenerator.getInstance("SunTlsPrf", provider);
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileSystem.java76 * thrown. File systems created by the default {@link FileSystemProvider provider}
88 * whether a file system is <i>asynchronously closeable</i> is provider specific
108 * Returns the provider that created this file system.
110 * @return The provider that created this file system.
112 public abstract FileSystemProvider provider(); method in class:FileSystem
139 * <p> File systems created by the default provider are always open.
163 * <p> In the case of the default provider, this method returns the same
185 * by the iterator. In the case of the default provider, the {@link
203 * <p> In the case of the default provider, and a security manager is
252 * The details as to how the Strings are joined is provider specifi
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESKeyGenerator.java26 package com.sun.crypto.provider;
H A DAESParameters.java26 package com.sun.crypto.provider;
H A DBlowfishKeyGenerator.java26 package com.sun.crypto.provider;
H A DBlowfishParameters.java26 package com.sun.crypto.provider;
H A DDESParameters.java26 package com.sun.crypto.provider;
H A DDESedeParameters.java26 package com.sun.crypto.provider;
H A DElectronicCodeBook.java26 package com.sun.crypto.provider;
H A DFeedbackCipher.java26 package com.sun.crypto.provider;
H A DHmacMD5KeyGenerator.java26 package com.sun.crypto.provider;
H A DHmacSHA1KeyGenerator.java26 package com.sun.crypto.provider;

Completed in 371 milliseconds

1234567891011>>