Searched defs:provider (Results 101 - 125 of 318) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPKIXMasterCertPathValidator.java26 package sun.security.provider.certpath;
H A DSunCertPathBuilderParameters.java26 package sun.security.provider.certpath;
H A DSunCertPathBuilderResult.java26 package sun.security.provider.certpath;
H A DUntrustedChecker.java26 package sun.security.provider.certpath;
H A DDistributionPointFetcher.java26 package sun.security.provider.certpath;
83 String provider,
118 point, reasonsMask, signFlag, prevKey, provider,
139 boolean signFlag, PublicKey prevKey, String provider,
193 reasonsMask, signFlag, prevKey, provider, trustAnchors,
274 * @param provider the Signature provider to use
284 PublicKey prevKey, String provider,
323 if (issues(certImpl, crlImpl, provider)) {
346 if (issues(certImpl, crlImpl, provider)) {
80 getCRLs(X509CRLSelector selector, boolean signFlag, PublicKey prevKey, String provider, List<CertStore> certStores, boolean[] reasonsMask, Set<TrustAnchor> trustAnchors, Date validity) argument
137 getCRLs(X509CRLSelector selector, X509CertImpl certImpl, DistributionPoint point, boolean[] reasonsMask, boolean signFlag, PublicKey prevKey, String provider, List<CertStore> certStores, Set<TrustAnchor> trustAnchors, Date validity) argument
282 verifyCRL(X509CertImpl certImpl, DistributionPoint point, X509CRL crl, boolean[] reasonsMask, boolean signFlag, PublicKey prevKey, String provider, Set<TrustAnchor> trustAnchors, List<CertStore> certStores, Date validity) argument
683 issues(X509CertImpl cert, X509CRLImpl crl, String provider) argument
[all...]
/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/share/classes/sun/tools/attach/
H A DHotSpotAttachProvider.java49 * Platform specific provider implementations extend this
173 HotSpotVirtualMachineDescriptor(AttachProvider provider, argument
176 super(provider, id, displayName);
/openjdk7/jdk/src/share/classes/sun/net/dns/
H A DResolverConfiguration.java44 private static ResolverConfiguration provider; field in class:ResolverConfiguration
55 if (provider == null) {
56 provider = new sun.net.dns.ResolverConfigurationImpl();
58 return provider;
/openjdk7/jdk/src/solaris/classes/sun/net/
H A DNetHooks.java42 * A provider with hooks to allow sockets be converted prior to binding or
72 * For now, we load the SDP provider on Solaris. In the future this may
76 private static final Provider provider = new sun.net.sdp.SdpProvider(); field in class:NetHooks
86 provider.implBeforeTcpBind(fdObj, address, port);
97 provider.implBeforeTcpConnect(fdObj, address, port);
/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);
H A DMacOSXFileSystem.java43 MacOSXFileSystem(UnixFileSystemProvider provider, String dir) { argument
44 super(provider, dir);
/openjdk7/jdk/test/sun/security/pkcs11/KeyAgreement/
H A DTestShort.java86 public void main(Provider provider) throws Exception { argument
87 if (provider.getService("KeyAgreement", "DH") == null) {
94 KeyFactory kf = KeyFactory.getInstance("DH", provider);
95 KeyAgreement ka = KeyAgreement.getInstance("DH", provider);
123 KeyPairGenerator kpg = KeyPairGenerator.getInstance("DH", provider);
129 KeyAgreement ka = KeyAgreement.getInstance("DH", 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);
H A DTestSignatures.java44 private static Provider provider; field in class:TestSignatures
58 Signature s = Signature.getInstance(algorithm, provider);
99 provider = p;
103 KeyFactory kf = KeyFactory.getInstance("RSA", provider);
/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestKeyMaterial.java53 public void main(Provider provider) throws Exception { argument
54 if (provider.getService("KeyGenerator", "SunTlsKeyMaterial") == null) {
129 KeyGenerator.getInstance("SunTlsKeyMaterial", provider);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMCanonicalizationMethod.java69 Provider provider) throws MarshalException {
70 super(cmElem, context, provider);
68 DOMCanonicalizationMethod(Element cmElem, XMLCryptoContext context, Provider provider) argument
H A DDOMManifest.java88 Provider provider) throws MarshalException {
102 refs.add(new DOMReference(refElem, context, provider));
87 DOMManifest(Element manElem, XMLCryptoContext context, Provider provider) argument
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousChannelGroup.java135 private final AsynchronousChannelProvider provider; field in class:AsynchronousChannelGroup
140 * @param provider
141 * The asynchronous channel provider for this group
143 protected AsynchronousChannelGroup(AsynchronousChannelProvider provider) { argument
144 this.provider = provider;
148 * Returns the provider that created this channel group.
150 * @return The provider that created this channel group
152 public final AsynchronousChannelProvider provider() { method in class:AsynchronousChannelGroup
153 return provider;
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAsynchronousChannelProvider.java38 * Service-provider class for asynchronous channels.
40 * <p> An asynchronous channel provider is a concrete subclass of this class that
43 * system-wide default provider instance, which is returned by the {@link
44 * #provider() provider} method. The first invocation of that method will locate
45 * the default provider as specified below.
73 // lazy initialization of default provider
75 static final AsynchronousChannelProvider provider = load(); field in class:AsynchronousChannelProvider.ProviderHolder
121 // Ignore the security exception, try the next provider
131 * Returns the system-wide default asynchronous channel provider fo
165 public static AsynchronousChannelProvider provider() { method in class:AsynchronousChannelProvider
[all...]
/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/java/rmi/server/
H A DRMIClassLoader.java60 * service provider interface for those methods. When one of the
62 * method on the service provider instance. The details of how each
63 * method delegates to the provider instance is described in the
66 * <p>The service provider instance is chosen as follows:
72 * its value equals the string <code>"default"</code>, the provider
79 * invoked to create the provider instance. If the property is
83 * obtain a provider instance.
88 * resource are interpreted as a provider-configuration file, and the
89 * first class name specified in that file is used as the provider
93 * that constructor will be invoked to create the provider instanc
117 private static final RMIClassLoaderSpi provider = field in class:RMIClassLoader
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DAlgorithmParameters.java77 // The provider
78 private Provider provider; field in class:AlgorithmParameters
80 // The provider implementation (delegate)
93 * @param provider the provider
97 Provider provider, String algorithm)
100 this.provider = provider;
160 * AlgorithmParametersSpi implementation from the specified provider
161 * is returned. The specified provider mus
96 AlgorithmParameters(AlgorithmParametersSpi paramSpi, Provider provider, String algorithm) argument
193 getInstance(String algorithm, String provider) argument
238 getInstance(String algorithm, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertStore.java44 * This class uses a provider-based architecture.
48 * and optionally the name of the provider desired.
102 private Provider provider; field in class:CertStore
108 * encapsulates the given provider implementation (SPI object) in it.
110 * @param storeSpi the provider implementation
111 * @param provider the provider
115 protected CertStore(CertStoreSpi storeSpi, Provider provider, argument
118 this.provider = provider;
293 getInstance(String type, CertStoreParameters params, String provider) argument
348 getInstance(String type, CertStoreParameters params, Provider provider) argument
[all...]
H A DCertificateFactory.java131 // The provider
132 private Provider provider; field in class:CertificateFactory
134 // The provider implementation
139 * the given provider implementation (SPI object) in it.
141 * @param certFacSpi the provider implementation.
142 * @param provider the provider.
146 Provider provider, String type)
149 this.provider = provider;
145 CertificateFactory(CertificateFactorySpi certFacSpi, Provider provider, String type) argument
226 getInstance(String type, String provider) argument
268 getInstance(String type, Provider provider) argument
[all...]

Completed in 91 milliseconds

1234567891011>>