HomeSort by relevance Sort by last modified time
    Searched defs:spi (Results 26 - 50 of 231) sorted by null

12 3 4 5 6 7 8 910

  /libcore/luni/src/main/java/javax/crypto/
SecretKeyFactory.java 50 // Store used spi implementation
60 * the SPI delegate.
109 return new SecretKeyFactory((SecretKeyFactorySpi) sap.spi, sap.provider, algorithm);
170 Object spi = ENGINE.getInstance(algorithm, provider, null); local
171 return new SecretKeyFactory((SecretKeyFactorySpi) spi, provider, algorithm);
ExemptionMechanism.java 44 // Store used spi implementation
104 return new ExemptionMechanism((ExemptionMechanismSpi) sap.spi, sap.provider, algorithm);
167 Object spi = ENGINE.getInstance(algorithm, provider, null); local
168 return new ExemptionMechanism((ExemptionMechanismSpi) spi, provider, algorithm);
Mac.java 44 // Store used spi implementation
107 return new Mac((MacSpi) sap.spi, sap.provider, algorithm);
168 Object spi = ENGINE.getInstance(algorithm, provider, null); local
169 return new Mac((MacSpi) spi, provider, algorithm);
  /libcore/luni/src/main/java/javax/net/ssl/
TrustManagerFactory.java 73 return new TrustManagerFactory((TrustManagerFactorySpi) sap.spi, sap.provider, algorithm);
131 Object spi = ENGINE.getInstance(algorithm, provider, null); local
132 return new TrustManagerFactory((TrustManagerFactorySpi) spi, provider, algorithm);
KeyManagerFactory.java 74 return new KeyManagerFactory((KeyManagerFactorySpi) sap.spi, sap.provider, algorithm);
132 Object spi = ENGINE.getInstance(algorithm, provider, null); local
133 return new KeyManagerFactory((KeyManagerFactorySpi) spi, provider, algorithm);
SSLContext.java 99 return new SSLContext((SSLContextSpi) sap.spi, sap.provider, protocol);
159 Object spi = ENGINE.getInstance(protocol, provider, null); local
160 return new SSLContext((SSLContextSpi) spi, provider, protocol);
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 57 ExemptionMechanismSpi spi = new MyExemptionMechanismSpi(); local
59 ExemptionMechanism em = new ExemptionMechanism(spi, mProv, defaultAlg) {};
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
KeyAgreement_Impl1Test.java 71 KeyAgreementSpi spi = new MyKeyAgreementSpi(); local
72 KeyAgreement keyA = new myKeyAgreement(spi, defaultProvider,
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/spi/
AbstractSelectionKeyTest.java 17 package org.apache.harmony.nio.tests.java.nio.channels.spi;
22 import java.nio.channels.spi.AbstractSelectionKey;
MockAbstractSelector.java 17 package org.apache.harmony.nio.tests.java.nio.channels.spi;
22 import java.nio.channels.spi.AbstractSelectableChannel;
23 import java.nio.channels.spi.AbstractSelectionKey;
24 import java.nio.channels.spi.AbstractSelector;
25 import java.nio.channels.spi.SelectorProvider;
AbstractInterruptibleChannelTest.java 17 package org.apache.harmony.nio.tests.java.nio.channels.spi;
21 import java.nio.channels.spi.AbstractInterruptibleChannel;
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 18 package java.nio.channels.spi;
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGenerator.java 29 // Store spi service name
94 return new AlgorithmParameterGenerator((AlgorithmParameterGeneratorSpi) sap.spi,
154 Object spi = ENGINE.getInstance(algorithm, provider, null); local
155 return new AlgorithmParameterGenerator((AlgorithmParameterGeneratorSpi) spi, provider,
AlgorithmParameters.java 47 * The SPI implementation.
98 return new AlgorithmParameters((AlgorithmParametersSpi) sap.spi, sap.provider, algorithm);
156 Object spi = ENGINE.getInstance(algorithm, provider, null); local
157 return new AlgorithmParameters((AlgorithmParametersSpi) spi, provider, algorithm);
KeyPairGenerator.java 86 Object spi = sap.spi; local
88 if (spi instanceof KeyPairGenerator) {
89 KeyPairGenerator result = (KeyPairGenerator) spi;
94 return new KeyPairGeneratorImpl((KeyPairGeneratorSpi) spi, provider, algorithm);
148 Object spi = ENGINE.getInstance(algorithm, provider, null); local
149 if (spi instanceof KeyPairGenerator) {
150 KeyPairGenerator result = (KeyPairGenerator) spi;
155 return new KeyPairGeneratorImpl((KeyPairGeneratorSpi) spi, provider, algorithm);
265 // using corresponding spi initialize() metho
    [all...]
MessageDigest.java 92 Object spi = sap.spi; local
94 if (spi instanceof MessageDigest) {
95 MessageDigest result = (MessageDigest) spi;
100 return new MessageDigestImpl((MessageDigestSpi) sap.spi, sap.provider, algorithm);
157 Object spi = ENGINE.getInstance(algorithm, provider, null); local
158 if (spi instanceof MessageDigest) {
159 MessageDigest result = (MessageDigest) spi;
164 return new MessageDigestImpl((MessageDigestSpi) spi, provider, algorithm);
424 MessageDigestSpi spi = (MessageDigestSpi) spiImpl.clone() local
    [all...]
SecureRandom.java 160 return new SecureRandom((SecureRandomSpi) sap.spi, sap.provider,
218 Object spi = ENGINE.getInstance(algorithm, provider, null); local
219 return new SecureRandom((SecureRandomSpi) spi, provider, algorithm);
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilder.java 49 // Store spi implementation
108 return new CertPathBuilder((CertPathBuilderSpi) sap.spi, sap.provider, algorithm);
164 Object spi = ENGINE.getInstance(algorithm, provider, null); local
165 return new CertPathBuilder((CertPathBuilderSpi) spi, provider, algorithm);
CertPathValidator.java 49 // Store used spi implementation
107 return new CertPathValidator((CertPathValidatorSpi) sap.spi, sap.provider, algorithm);
165 Object spi = ENGINE.getInstance(algorithm, provider, null); local
166 return new CertPathValidator((CertPathValidatorSpi) spi, provider, algorithm);
CertificateFactory.java 91 return new CertificateFactory((CertificateFactorySpi) sap.spi, sap.provider, type);
156 Object spi = ENGINE.getInstance(type, provider, null); local
157 return new CertificateFactory((CertificateFactorySpi) spi, provider, type);
CertStore.java 35 // Store spi implementation service name
104 return new CertStore((CertStoreSpi) sap.spi, sap.provider, type, params);
181 Object spi = ENGINE.getInstance(type, provider, params); local
182 return new CertStore((CertStoreSpi) spi, provider, type, params);
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Engine.java 35 * and Service Provider Interface (SPI) results. Retreiving the
46 * private final FooSpi spi;
50 * protected Foo(FooSpi spi,
53 * this.spi = spi;
60 * return new Foo((FooSpi) sap.spi, sap.provider, algorithm);
64 * Object spi = ENGINE.getInstance(algorithm, provider, null);
65 * return new Foo((FooSpi) spi, provider, algorithm);
110 public final Object spi; field in class:Engine.SpiAndProvider
112 private SpiAndProvider(Object spi, Provider provider)
    [all...]
  /external/iproute2/ip/
xfrm_monitor.c 71 if (show_stats > 0 || xacq->id.spi) {
72 __u32 spi = ntohl(xacq->id.spi); local
73 fprintf(fp, "spi 0x%08x", spi);
75 fprintf(fp, "(%u)", spi);
245 fprintf(fp, " SPI 0x%x", ntohl(id->sa_id.spi));
  /external/ipsec-tools/src/racoon/
proposal.h 75 size_t spisize; /* spi size */
82 u_int32_t spi; /* inbound. i.e. --SA-> me */ member in struct:saproto
  /external/iptables/include/linux/netfilter/
xt_policy.h 25 spi:1, member in struct:xt_policy_spec
54 __be32 spi; member in struct:xt_policy_elem

Completed in 591 milliseconds

12 3 4 5 6 7 8 910