HomeSort by relevance Sort by last modified time
    Searched defs:algorithm (Results 126 - 150 of 370) sorted by null

1 2 3 4 56 7 8 91011>>

  /system/security/keystore/
key_store_service.cpp 24 #include <algorithm>
377 params.push_back(TAG_ALGORITHM, Algorithm::EC);
388 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
455 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
458 params.push_back(TAG_ALGORITHM, Algorithm::EC);
1777 auto algorithm = getKeyAlgoritmFromKeyCharacteristics(characteristics); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-spi/1.0.2.v20150114/
aether-spi-1.0.2.v20150114.jar 
  /prebuilts/tools/common/m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.13/
FastInfoset-1.2.13.jar 
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 908 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyStoreTest.java 171 String algorithm = service.getAlgorithm(); local
172 KeyStore ks = KeyStore.getInstance(algorithm, provider);
174 assertEquals(algorithm, ks.getType());
447 String algorithm = service.getAlgorithm(); local
448 KeyStore ks = KeyStore.getInstance(algorithm, provider);
450 assertEquals(algorithm, ks.getType());
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 614 ASN1ObjectIdentifier algorithm = algId.getAlgorithm(); local
617 if (algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds))
624 Cipher cipher = helper.createCipher(algorithm.getId());
630 // we pass "" as the key algorithm type as it is unknown at this point
633 else if (algorithm.equals(PKCSObjectIdentifiers.id_PBES2))
638 // we pass "" as the key algorithm type as it is unknown at this point
647 throw new IOException("exception unwrapping private key - cannot recognise: " + algorithm);
651 String algorithm,
662 SecretKeyFactory keyFact = helper.createSecretKeyFactory(algorithm);
667 Cipher cipher = helper.createCipher(algorithm);
689 ASN1ObjectIdentifier algorithm = algId.getAlgorithm(); local
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
SSLParametersImpl.java 103 // Endpoint identification algorithm (e.g., HTTPS)
889 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
959 String algorithm = TrustManagerFactory.getDefaultAlgorithm(); local
    [all...]
  /external/vboot_reference/firmware/include/
vboot_struct.h 19 /* Signature algorithm used by the key */
20 uint64_t algorithm; member in struct:VbPublicKey
  /frameworks/base/media/jni/
android_media_MediaDrm.cpp 1263 String8 algorithm = JStringToString8(env, jalgorithm); local
1287 String8 algorithm = JStringToString8(env, jalgorithm); local
1432 String8 algorithm = JStringToString8(env, jalgorithm); local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
FrameParser.java 569 short algorithm = data.getShort(); local
572 switch (algorithm) {
588 // Ignore unknown algorithm -- don't know which frames would have result codes.
627 return "Unsupported authentication algorithm";
  /hardware/intel/common/libva/va/
va_vpp.h 140 * deint.algorithm = VAProcDeinterlacingMotionAdaptive;
154 * needed by the specified deinterlacing algorithm, the supported color
267 /** \brief Bob deinterlacing algorithm. */
269 /** \brief Weave deinterlacing algorithm. */
271 /** \brief Motion adaptive deinterlacing algorithm. */
273 /** \brief Motion compensated deinterlacing algorithm. */
783 /** \brief Deinterlacing algorithm. */
784 VAProcDeinterlacingType algorithm; member in struct:_VAProcFilterParameterBufferDeinterlacing
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionTest.java 660 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
661 KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(algorithm);
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 107 String algorithm = service.getAlgorithm().toUpperCase(); local
112 + " " + algorithm
118 if (remainingAlgorithms == null || !remainingAlgorithms.remove(algorithm)) {
120 // algorithm is available from multiple providers
125 && StandardNames.PROVIDER_ALGORITHMS.get(type).contains(algorithm))) {
126 extra.add("Unknown " + type + " " + algorithm + " " + providerName + "\n");
128 } else if ("Cipher".equals(type) && !algorithm.contains("/")) {
137 if (parts.length == 3 && algorithm.equals(parts[0])) {
281 * Helper function to fetch services for Service.Algorithm IDs
731 // This triggers a re-indexing of the algorithm id data
    [all...]
SignatureTest.java 244 protected MySignature(String algorithm) {
245 super(algorithm);
468 String algorithm = service.getAlgorithm(); local
470 KeyPair kp = keyPair(algorithm, provider.getName());
472 Signature sig1 = Signature.getInstance(algorithm);
473 assertEquals(algorithm, sig1.getAlgorithm());
477 Signature sig2 = Signature.getInstance(algorithm, provider);
478 assertEquals(algorithm, sig2.getAlgorithm());
483 Signature sig3 = Signature.getInstance(algorithm, provider.getName());
484 assertEquals(algorithm, sig3.getAlgorithm())
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Provider.java 52 * algorithm-specific keys).
890 private final String algorithm; field in class:Provider.ServiceKey
892 private ServiceKey(String type, String algorithm, boolean intern) {
894 this.originalAlgorithm = algorithm;
895 algorithm = algorithm.toUpperCase(ENGLISH);
896 this.algorithm = intern ? algorithm.intern() : algorithm;
899 return type.hashCode() + algorithm.hashCode()
1159 String algorithm = s.getAlgorithm(); local
1176 String algorithm = s.getAlgorithm(); local
1197 String algorithm = s.getAlgorithm(); local
1256 String algorithm = s.getAlgorithm(); local
1419 private String type, algorithm, className; field in class:Provider.Service
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/apk/v2/
V2SchemeVerifier.java 83 * required cryptographic algorithm implementation is missing
234 SignatureAlgorithm signatureAlgorithm = signature.algorithm;
372 // Pick the signature with the strongest algorithm, to mimic Android's behavior.
376 SignatureAlgorithm sigAlgorithm = sig.algorithm;
393 private final SignatureAlgorithm algorithm; field in class:V2SchemeVerifier.SupportedSignature
396 private SupportedSignature(SignatureAlgorithm algorithm, byte[] signature) {
397 this.algorithm = algorithm;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20100503.jar 
  /external/syslinux/gpxe/src/include/gpxe/
ieee80211.h 1140 u16 algorithm; member in struct:ieee80211_auth
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
TaskStack.java 527 final DividerSnapAlgorithm algorithm = new DividerSnapAlgorithm( local
531 final SnapTarget target = algorithm.calculateNonDismissingSnapTarget(dividerPosition);
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/
aether-connector-basic-1.0.2.v20150114.jar 
  /prebuilts/tools/common/m2/repository/org/bitbucket/b_c/jose4j/0.5.0/
jose4j-0.5.0.jar 
  /external/boringssl/src/include/openssl/
asn1.h 524 ASN1_OBJECT *algorithm; member in struct:X509_algor_st
    [all...]
  /external/webrtc/talk/app/webrtc/
webrtcsdp.cc 32 #include <algorithm>
2002 std::string algorithm; local
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherTest.java 84 private static boolean isSupported(String algorithm, String provider) {
85 if (algorithm.equals("RC2")) {
88 if (algorithm.equals("PBEWITHMD5ANDRC2")) {
91 if (algorithm.startsWith("PBEWITHSHA1ANDRC2")) {
94 if (algorithm.equals("PBEWITHSHAAND40BITRC2-CBC")) {
97 if (algorithm.equals("PBEWITHSHAAND128BITRC2-CBC")) {
100 if (algorithm.equals("PBEWITHSHAANDTWOFISH-CBC")) {
104 if (algorithm.equals("PBEWITHMD5ANDTRIPLEDES")) {
110 (algorithm.equals("AES/CFB/PKCS5PADDING")
111 || algorithm.equals("AES/CFB/PKCS7PADDING"
905 String algorithm = encryptCipher.getAlgorithm().toUpperCase(Locale.US); local
933 String algorithm = "PBEWITHMD5ANDTRIPLEDES"; external variable declarations
1323 String algorithm = service.getAlgorithm(); local
1418 String algorithm = c.getAlgorithm().toUpperCase(Locale.US); local
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 1031 private final String algorithm; field in class:SSLSocketTest.OpaqueSignatureSpi
    [all...]

Completed in 2515 milliseconds

1 2 3 4 56 7 8 91011>>