HomeSort by relevance Sort by last modified time
    Searched defs:ENGINE (Results 1 - 24 of 24) sorted by null

  /libcore/luni/src/main/java/javax/crypto/
SecretKeyFactory.java 27 import org.apache.harmony.security.fortress.Engine;
44 // Used to access common engine functionality
45 private static final Engine ENGINE = new Engine("SecretKeyFactory");
108 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
170 Object spi = ENGINE.getInstance(algorithm, provider, null);
KeyAgreement.java 29 import org.apache.harmony.security.fortress.Engine;
38 // Used to access common engine functionality
39 private static final Engine ENGINE = new Engine("KeyAgreement");
104 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
166 Object spi = ENGINE.getInstance(algorithm, provider, null);
KeyGenerator.java 27 import org.apache.harmony.security.fortress.Engine;
36 // Used to access common engine functionality
37 private static final Engine ENGINE = new Engine("KeyGenerator");
103 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
163 Object spi = ENGINE.getInstance(algorithm, provider, null);
ExemptionMechanism.java 30 import org.apache.harmony.security.fortress.Engine;
38 // Used to access common engine functionality
39 private static final Engine ENGINE = new Engine("ExemptionMechanism");
103 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
167 Object spi = ENGINE.getInstance(algorithm, provider, null);
Mac.java 29 import org.apache.harmony.security.fortress.Engine;
38 //Used to access common engine functionality
39 private static final Engine ENGINE = new Engine("Mac");
106 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
168 Object spi = ENGINE.getInstance(algorithm, provider, null);
Cipher.java 36 import org.apache.harmony.security.fortress.Engine;
107 * Used to access common engine functionality.
109 private static final Engine ENGINE = new Engine(SERVICE);
270 Engine.SpiAndProvider sap = ENGINE.getInstance(transf[0], null);
274 engineSpi = ENGINE.getInstance(transf[0], provider, null);
287 Engine.SpiAndProvider sap = ENGINE.getInstance(searchOrder[i], null)
    [all...]
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGenerator.java 21 import org.apache.harmony.security.fortress.Engine;
24 * {@code AlgorithmParameterGenerator} is an engine class which is capable of
32 // Used to access common engine functionality
33 private static final Engine ENGINE = new Engine(SERVICE);
52 * a concrete implementation, this engine instance delegates to.
93 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
154 Object spi = ENGINE.getInstance(algorithm, provider, null)
    [all...]
KeyFactory.java 22 import org.apache.harmony.security.fortress.Engine;
25 * {@code KeyFactory} is an engine class that can be used to translate between
34 // Used to access common engine functionality
35 private static final Engine ENGINE = new Engine(SERVICE);
81 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
135 Object spi = ENGINE.getInstance(algorithm, provider, null);
AlgorithmParameters.java 23 import org.apache.harmony.security.fortress.Engine;
27 * {@code AlgorithmParameters} is an engine class which provides algorithm
37 * Used to access common engine functionality.
39 private static final Engine ENGINE = new Engine(SEVICE);
97 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
156 Object spi = ENGINE.getInstance(algorithm, provider, null);
KeyPairGenerator.java 21 import org.apache.harmony.security.fortress.Engine;
25 * {@code KeyPairGenerator} is an engine class which is capable of generating a
36 // Used to access common engine functionality
37 private static final Engine ENGINE = new Engine(SERVICE);
85 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
148 Object spi = ENGINE.getInstance(algorithm, provider, null);
MessageDigest.java 21 import org.apache.harmony.security.fortress.Engine;
53 // Used to access common engine functionality
54 private static final Engine ENGINE = new Engine("MessageDigest");
91 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
157 Object spi = ENGINE.getInstance(algorithm, provider, null);
332 * Returns the engine digest length in bytes. If the implementation does not
SecureRandom.java 24 import org.apache.harmony.security.fortress.Engine;
72 // Used to access common engine functionality
73 private static final Engine ENGINE = new Engine(SERVICE);
156 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
215 Object spi = ENGINE.getInstance(algorithm, provider, null);
Signature.java 26 import org.apache.harmony.security.fortress.Engine;
30 * {@code Signature} is an engine class which is capable of creating and
41 // Used to access common engine functionality
42 private static Engine ENGINE = new Engine(SERVICE);
104 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
178 Object spi = ENGINE.getInstance(algorithm, provider, null);
KeyStore.java 36 import org.apache.harmony.security.fortress.Engine;
54 // Used to access common engine functionality
55 private static final Engine ENGINE = new Engine(SERVICE);
116 Engine.SpiAndProvider sap = ENGINE.getInstance(type, null);
189 Object spi = ENGINE.getInstance(type, provider, null);
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilder.java 25 import org.apache.harmony.security.fortress.Engine;
36 // Used to access common engine functionality
37 private static final Engine ENGINE = new Engine(SERVICE);
106 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
163 Object spi = ENGINE.getInstance(algorithm, provider, null);
CertPathValidator.java 25 import org.apache.harmony.security.fortress.Engine;
36 // Used to access common engine functionality
37 private static final Engine ENGINE = new Engine(SERVICE);
106 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
165 Object spi = ENGINE.getInstance(algorithm, provider, null);
CertStore.java 26 import org.apache.harmony.security.fortress.Engine;
38 // Used to access common engine functionality
39 private static final Engine ENGINE = new Engine(SERVICE);
103 Engine.SpiAndProvider sap = ENGINE.getInstance(type, params);
181 Object spi = ENGINE.getInstance(type, provider, params);
CertificateFactory.java 28 import org.apache.harmony.security.fortress.Engine;
43 // Used to access common engine functionality
44 private static final Engine ENGINE = new Engine(SERVICE);
90 Engine.SpiAndProvider sap = ENGINE.getInstance(type, null);
156 Object spi = ENGINE.getInstance(type, provider, null);
  /libcore/luni/src/main/java/javax/net/ssl/
TrustManagerFactory.java 27 import org.apache.harmony.security.fortress.Engine;
37 // Used to access common engine functionality
38 private static final Engine ENGINE = new Engine(SERVICE);
76 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
135 Object spi = ENGINE.getInstance(algorithm, provider, null);
KeyManagerFactory.java 28 import org.apache.harmony.security.fortress.Engine;
37 // Used to access common engine functionality
38 private static final Engine ENGINE = new Engine(SERVICE);
77 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
136 Object spi = ENGINE.getInstance(algorithm, provider, null);
SSLContext.java 26 import org.apache.harmony.security.fortress.Engine;
37 // Used to access common engine functionality
38 private static final Engine ENGINE = new Engine(SERVICE);
58 synchronized (ENGINE) {
77 synchronized (ENGINE) {
98 Engine.SpiAndProvider sap = ENGINE.getInstance(protocol, null);
159 Object spi = ENGINE.getInstance(protocol, provider, null)
    [all...]
  /external/openssl/crypto/
ossl_typ.h 171 typedef struct engine_st ENGINE;
  /external/openssl/include/openssl/
ossl_typ.h 171 typedef struct engine_st ENGINE;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 

Completed in 545 milliseconds