HomeSort by relevance Sort by last modified time
    Searched refs:KeyFactory (Results 51 - 75 of 232) sorted by null

1 23 4 5 6 7 8 910

  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 40 import java.security.KeyFactory;
201 // X.509 encoded form using KeyFactory.generatePublic. This conversion is also currently
206 KeyFactory factory = KeyFactory.getInstance(publicKey.getAlgorithm());
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 40 import java.security.KeyFactory;
201 // X.509 encoded form using KeyFactory.generatePublic. This conversion is also currently
206 KeyFactory factory = KeyFactory.getInstance(publicKey.getAlgorithm());
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 40 import java.security.KeyFactory;
201 // X.509 encoded form using KeyFactory.generatePublic. This conversion is also currently
206 KeyFactory factory = KeyFactory.getInstance(publicKey.getAlgorithm());
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
EcdsaTest.java 26 import java.security.KeyFactory;
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreProvider.java 26 import java.security.KeyFactory;
77 // java.security.KeyFactory
131 put("KeyFactory." + algorithm, PACKAGE_NAME + ".AndroidKeyStoreKeyFactorySpi");
180 KeyFactory keyFactory = KeyFactory.getInstance(keyAlgorithm);
181 publicKey = keyFactory.generatePublic(new X509EncodedKeySpec(x509EncodedForm));
184 "Failed to obtain " + keyAlgorithm + " KeyFactory", e);
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 43 import java.security.KeyFactory;
144 KeyFactory keyFactory = KeyFactory.getInstance("RSA");
145 return (PrivateKey) keyFactory.generatePrivate(keySpec);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
AlgorithmChecker.java 36 import java.security.KeyFactory;
331 KeyFactory kf = KeyFactory.getInstance("DSA");
  /test/vts/web/dashboard/src/main/java/com/android/vts/servlet/
ShowGraphServlet.java 35 import com.google.appengine.api.datastore.KeyFactory;
175 Key parentKey = KeyFactory.createKey(TestEntity.KIND, testName);
190 Entity profilingRun = datastore.get(KeyFactory.createKey(
ShowTableServlet.java 34 import com.google.appengine.api.datastore.KeyFactory;
92 datastore.get(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId));
172 Key testKey = KeyFactory.createKey(TestEntity.KIND, testName);
  /system/keymaster/
attestation_record_test.cpp 44 KeyFactory* GetKeyFactory(keymaster_algorithm_t /* algorithm */) const override {
  /frameworks/base/keystore/tests/src/android/security/keystore/
AndroidKeyStoreTest.java 33 import java.security.KeyFactory;
    [all...]
  /build/make/tools/signtos/
SignTos.java 38 import java.security.KeyFactory;
139 * OID and use that to construct a KeyFactory.
145 return KeyFactory.getInstance(algOid).generatePrivate(spec);
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/src/android/security/net/config/cts/
DownloadManagerTest.java 36 import java.security.KeyFactory;
148 key = KeyFactory.getInstance("RSA")
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
DESede.java 302 static public class KeyFactory
305 public KeyFactory()
434 provider.addAlgorithm("SecretKeyFactory.DESEDE", PREFIX + "$KeyFactory");
437 // provider.addAlgorithm("SecretKeyFactory", OIWObjectIdentifiers.desEDE, PREFIX + "$KeyFactory");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 7 import java.security.KeyFactory;
388 KeyFactory kf = helper.createKeyFactory(wrappedKeyAlgorithm);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/netscape/
NetscapeCertRequest.java 7 import java.security.KeyFactory;
118 pubkey = KeyFactory.getInstance(keyAlg.getAlgorithm().getId(), "BC")
  /test/vts/web/dashboard/src/main/java/com/android/vts/entity/
TestRunEntity.java 21 import com.google.appengine.api.datastore.KeyFactory;
116 this.key = KeyFactory.createKey(parentKey, KIND, startTimestamp);
  /test/vts/web/dashboard/src/main/java/com/android/vts/util/
PerformanceUtil.java 25 import com.google.appengine.api.datastore.KeyFactory;
186 Key testKey = KeyFactory.createKey(TestEntity.KIND, testName);
  /test/vts/web/dashboard/src/test/java/com/android/vts/servlet/
VtsPerformanceJobServletTest.java 26 import com.google.appengine.api.datastore.KeyFactory;
69 return new ProfilingPointRunEntity(KeyFactory.createKey(TestEntity.KIND, "test"), "name", 0,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 7 import java.security.KeyFactory;
423 return KeyFactory.getInstance(keyAlg.getAlgorithm().getId()).generatePublic(xspec);
427 return KeyFactory.getInstance(keyAlg.getAlgorithm().getId(), provider).generatePublic(xspec);
441 return KeyFactory.getInstance(keyAlgorithm).generatePublic(xspec);
445 return KeyFactory.getInstance(keyAlgorithm, provider).generatePublic(xspec);
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 24 import java.security.KeyFactory;
329 KeyFactory keyFactory = KeyFactory.getInstance(wrappedKeyAlgorithm);
330 return keyFactory.generatePublic(new X509EncodedKeySpec(encoded));
332 KeyFactory keyFactory = KeyFactory.getInstance(wrappedKeyAlgorithm);
333 return keyFactory.generatePrivate(new PKCS8EncodedKeySpec(encoded));
  /libcore/luni/src/test/java/libcore/java/security/
KeyPairGeneratorTest.java 25 import java.security.KeyFactory;
322 if (!"KeyFactory".equals(service.getType())) {
331 KeyFactory kf = KeyFactory.getInstance(k.getAlgorithm(), p);
348 KeyFactory kf = KeyFactory.getInstance(k.getAlgorithm(), p);
  /cts/tests/tests/keystore/src/android/keystore/cts/
AndroidKeyStoreTest.java 38 import java.security.KeyFactory;
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
KeyChainTest.java 47 import java.security.KeyFactory;
229 KeyFactory keyFact = KeyFactory.getInstance("RSA");
  /cts/tests/tests/net/src/android/net/wifi/cts/
FakeKeys.java 22 import java.security.KeyFactory;
251 KeyFactory kf = KeyFactory.getInstance("RSA");

Completed in 739 milliseconds

1 23 4 5 6 7 8 910