Searched defs:provider (Results 151 - 175 of 318) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/security/auth/login/
H A DConfiguration.java176 * of the "login.configuration.provider" security property (in the Java
250 ("login.configuration.provider");
359 instance.provider,
371 * ConfigurationSpi implementation from the specified provider
372 * is returned. The specified provider must be registered
373 * in the provider list.
386 * @param provider the provider.
395 * @exception IllegalArgumentException if the specified provider
398 * the ConfigurationSpi implementation from the specified provider
410 getInstance(String type, Configuration.Parameters params, String provider) argument
472 getInstance(String type, Configuration.Parameters params, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DTerminalFactory.java77 * multiple providers than if each provider used different provider
80 * <P>TerminalFactory utilizes an extensible service provider framework.
168 private final Provider provider; field in class:TerminalFactory
172 private TerminalFactory(TerminalFactorySpi spi, Provider provider, String type) { argument
174 this.provider = provider;
246 instance.provider, type);
254 * TerminalFactorySpi implementation from the specified provider
255 * is returned. The specified provider mus
280 getInstance(String type, Object params, String provider) argument
312 getInstance(String type, Object params, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DTransformService.java60 * <code>TransformService</code> service provider implementation should include
63 * "DOM" is assumed. For example, a service provider that supports the
101 * class. Unless otherwise documented by a specific provider, threads that
115 private Provider provider; field in class:TransformService
127 * <p>This method uses the standard JCA provider lookup mechanism to
170 ts.provider = instance.provider;
182 * (ex: DOM) as supplied by the specified provider. Note that the specified
184 * provider list.
189 * @param provider th
199 getInstance(String algorithm, String mechanismType, Provider provider) argument
251 getInstance(String algorithm, String mechanismType, String provider) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyInfo.java89 Provider provider) throws MarshalException {
123 (new DOMRetrievalMethod(childElem, context, provider));
88 DOMKeyInfo(Element kiElem, XMLCryptoContext context, Provider provider) argument
H A DDOMRetrievalMethod.java120 Provider provider) throws MarshalException {
140 (new DOMTransform(transformElem, context, provider));
119 DOMRetrievalMethod(Element rmElem, XMLCryptoContext context, Provider provider) argument
H A DDOMTransform.java72 Provider provider) throws MarshalException {
78 spi = TransformService.getInstance(algorithm, "DOM", provider);
71 DOMTransform(Element transElem, XMLCryptoContext context, Provider provider) argument
H A DDOMXMLObject.java92 Provider provider) throws MarshalException {
114 content.add(new DOMManifest(childElem, context, provider));
91 DOMXMLObject(Element objElem, XMLCryptoContext context, Provider provider) argument
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractSelector.java75 // The provider that created this selector
76 private final SelectorProvider provider; field in class:AbstractSelector
81 protected AbstractSelector(SelectorProvider provider) { argument
82 this.provider = provider;
134 * Returns the provider that created this channel.
136 * @return The provider that created this channel
138 public final SelectorProvider provider() { method in class:AbstractSelector
139 return provider;
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyFactory.java104 // The provider
105 private Provider provider; field in class:KeyFactory
107 // The provider implementation (delegate)
110 // lock for mutex during provider selection
113 // remaining services to try in provider selection
114 // null once provider is selected
121 * @param provider the provider
125 protected KeyFactory(KeyFactorySpi keyFacSpi, Provider provider, argument
128 this.provider
209 getInstance(String algorithm, String provider) argument
246 getInstance(String algorithm, Provider provider) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DEncryptedPrivateKeyInfo.java275 Provider provider) throws NoSuchAlgorithmException,
280 if (provider == null) {
284 c = Cipher.getInstance(algid.getName(), provider);
333 * @param providerName the name of provider whose Cipher
338 * @exception NoSuchProviderException if no provider
355 throw new NullPointerException("provider is null");
357 Provider provider = Security.getProvider(providerName);
358 if (provider == null) {
359 throw new NoSuchProviderException("provider " +
362 return getKeySpecImpl(decryptKey, provider);
274 getKeySpecImpl(Key decryptKey, Provider provider) argument
382 getKeySpec(Key decryptKey, Provider provider) argument
[all...]
H A DExemptionMechanism.java53 // The provider
54 private Provider provider; field in class:ExemptionMechanism
56 // The provider implementation (delegate)
76 * @param provider the provider
80 Provider provider,
83 this.provider = provider;
139 instance.provider, algorithm);
148 * ExemptionMechanismSpi implementation from the specified provider
79 ExemptionMechanism(ExemptionMechanismSpi exmechSpi, Provider provider, String mechanism) argument
181 getInstance(String algorithm, String provider) argument
222 getInstance(String algorithm, Provider provider) argument
[all...]
H A DSealedObject.java220 * If the default provider package provides an implementation of that
316 * the given <code>provider</code>.
325 * @param provider the name of the provider of the algorithm to unseal
330 * @exception IllegalArgumentException if the given provider is null
337 * @exception NoSuchProviderException if the given provider is not
343 public final Object getObject(Key key, String provider) argument
350 if (provider == null || provider.length() == 0) {
351 throw new IllegalArgumentException("missing provider");
364 unseal(Key key, String provider) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpServerChannel.java77 * @param provider
78 * The selector provider for this channel
80 protected SctpServerChannel(SelectorProvider provider) { argument
81 super(provider);
/openjdk7/jdk/src/share/classes/com/sun/tools/attach/
H A DVirtualMachine.java106 private AttachProvider provider; field in class:VirtualMachine
113 * @param provider
114 * The attach provider creating this class.
119 * If <code>provider</code> or <code>id</code> is <code>null</code>.
121 protected VirtualMachine(AttachProvider provider, String id) { argument
122 if (provider == null) {
123 throw new NullPointerException("provider cannot be null");
128 this.provider = provider;
142 * If there are no Java virtual machines known to any provider
282 public final AttachProvider provider() { method in class:VirtualMachine
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherBlockChaining.java26 package com.sun.crypto.provider;
H A DCipherFeedback.java26 package com.sun.crypto.provider;
H A DDESedeCrypt.java26 package com.sun.crypto.provider;
H A DDHPrivateKey.java26 package com.sun.crypto.provider;
H A DDHPublicKey.java26 package com.sun.crypto.provider;
H A DElectronicCodeBook.java26 package com.sun.crypto.provider;
H A DKeyGeneratorCore.java26 package com.sun.crypto.provider;
H A DOutputFeedback.java26 package com.sun.crypto.provider;
H A DPBKDF2KeyImpl.java26 package com.sun.crypto.provider;
H A DPCBC.java26 package com.sun.crypto.provider;
H A DRC2Crypt.java26 package com.sun.crypto.provider;

Completed in 71 milliseconds

1234567891011>>