HomeSort by relevance Sort by last modified time
    Searched refs:algorithms (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DefaultSignatureAlgorithmIdentifierFinder.java 31 private static Map algorithms = new HashMap(); field in class:DefaultSignatureAlgorithmIdentifierFinder
49 // algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption);
50 // algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption);
52 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
53 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
54 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
55 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
56 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
57 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
58 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption)
    [all...]
  /frameworks/base/core/java/android/security/net/config/
PinSet.java 40 Set<String> algorithms = new ArraySet<String>(); local
42 algorithms.add(pin.digestAlgorithm);
44 return algorithms;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Util.java 45 private static Hashtable algorithms = new Hashtable(); field in class:X509Util
52 // algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption);
53 // algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption);
55 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
56 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
57 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
58 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
59 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
60 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
61 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption)
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLContextImpl.java 47 private final String[] algorithms; field in class:OpenSSLContextImpl
62 OpenSSLContextImpl(String[] algorithms) {
63 this.algorithms = algorithms;
73 this.algorithms = null;
84 serverSessionContext, algorithms);
91 * implementations of the needed algorithms.
102 kms, tms, sr, clientSessionContext, serverSessionContext, algorithms);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 80 private static Hashtable algorithms = new Hashtable(); field in class:PKCS10CertificationRequest
90 // algorithms.put("MD2WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.2"));
91 // algorithms.put("MD2WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.2"));
93 algorithms.put("MD5WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
94 algorithms.put("MD5WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
95 algorithms.put("RSAWITHMD5", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
96 algorithms.put("SHA1WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"));
97 algorithms.put("SHA1WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"));
98 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
99 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption)
    [all...]
  /external/curl/docs/cmdline-opts/
compressed.d 5 Request a compressed response using one of the algorithms curl supports, and
  /libcore/ojluni/src/main/java/sun/security/util/
AbstractAlgorithmConstraints.java 70 // map the disabled algorithms
77 static boolean checkAlgorithm(String[] algorithms, String algorithm,
84 for (String item : algorithms) {
DisabledAlgorithmConstraints.java 43 * Algorithm constraints for disabled algorithms property
133 * algorithms are allowed, certificate constraints, and the
352 // Get all signature algorithms to check for constraints
353 Set<String> algorithms = local
355 if (algorithms == null || algorithms.isEmpty()) {
360 algorithms.add(cert.getPublicKey().getAlgorithm());
363 for (String algorithm : algorithms) {
  /compatibility/cdd/8_performance-and-power/
8_3_power-saving-modes.md 8 * [H-0-2] The triggering, maintenance, wakeup algorithms and the use of
14 * [T-0-2] The triggering, maintenance, wakeup algorithms and the use of
20 * [A-0-2] The triggering, maintenance, wakeup algorithms and the use of
26 * [SR] The triggering, maintenance, wakeup algorithms and the use of
  /external/tpm2/
CryptSelfTest.c 22 ALGORITHM_VECTOR *toTest // IN: the vector of the algorithms to test
26 // For each of the algorithms that are in the toTestVecor, need to run a
43 // This function is called to start/complete a full self-test. If fullTest is NO, then only the untested algorithms
91 TPML_ALG *toTest, // IN: list of algorithms to be tested
92 TPML_ALG *toDoList // OUT: list of algorithms needing test
104 TPM_ALG_ID alg = toTest->algorithms[i];
114 // Fill in the toDoList with the algorithms that are still untested
121 toDoList->algorithms[toDoList->count++] = alg;
130 // This function will initialize the data structures for testing all the algorithms. This should not be called
143 // out any algorithms for which there is no test
    [all...]
GetCapability.c 34 in->propertyCount, &out->capabilityData.data.algorithms);
  /libcore/tools/docs/crypto/
format_supported_algorithm_table.py 48 output.append('<h2 id="SupportedAlgorithms">Supported Algorithms</h2>')
68 algorithms = sort_by_name(category['algorithms'])
70 for algorithm in algorithms:
171 supported = sort_by_name(category['algorithms'])
172 enabled = sort_by_name(find_by_name(categories, basename + '.Enabled')['algorithms'])
208 algorithms = sort_by_name(category['algorithms'])
209 for algorithm in algorithms:
  /system/tpm/trunks/
tpm_state_test.cc 98 if (data.algorithms.count == kMaxProperties ||
99 data.algorithms.count == property_count) {
104 data.algorithms.alg_properties[data.algorithms.count].alg = i;
105 data.algorithms.alg_properties[data.algorithms.count].alg_properties =
107 data.algorithms.count++;
  /external/conscrypt/libcore-stub/src/main/java/libcore/java/security/
StandardNames.java 95 * A map from algorithm type (e.g. Cipher) to a set of algorithms (e.g. AES, DES, ...)
110 HashSet<String> algorithms = PROVIDER_ALGORITHMS.get(type); local
111 if (algorithms == null) {
112 algorithms = new HashSet<String>();
113 PROVIDER_ALGORITHMS.put(type, algorithms);
116 algorithms.add(algorithm.toUpperCase(Locale.ROOT)));
119 HashSet<String> algorithms = PROVIDER_ALGORITHMS.get(type); local
120 assertNotNull(algorithms);
121 assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase(Locale.ROOT)));
122 if (algorithms.isEmpty())
    [all...]
  /compatibility/cdd/9_security-model/
9_11_keys-and-credentials.md 19 algorithms and MD5, SHA1, and SHA-2 family hash functions to properly support
20 the Android Keystore system's supported algorithms in an area that is securely
  /external/boringssl/src/crypto/x509/
x_algor.c 71 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, algorithms, X509_ALGOR)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
hashlib.py 18 More algorithms may be available on your platform but the above are
61 algorithms = __always_supported variable
63 __all__ = __always_supported + ('new', 'algorithms')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_hashlib.py 53 algorithms = set()
55 algorithms.add(algorithm.lower())
57 for algorithm in algorithms:
72 # These two algorithms should always be present when this module
106 self.assertEqual(hashlib.algorithms,
  /external/toybox/toys/lsb/
md5sum.c 256 } algorithms[] = { local
269 for (i = 0; i<ARRAY_LEN(algorithms); i++)
270 if (!strcmp(toys.which->name, algorithms[i].name)) break;
271 hash = algorithms+i;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
hashlib.py 18 More algorithms may be available on your platform but the above are
61 algorithms = __always_supported variable
63 __all__ = __always_supported + ('new', 'algorithms')
  /prebuilts/gdb/linux-x86/lib/python2.7/
hashlib.py 18 More algorithms may be available on your platform but the above are
61 algorithms = __always_supported variable
63 __all__ = __always_supported + ('new', 'algorithms')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hashlib.py 18 More algorithms may be available on your platform but the above are
61 algorithms = __always_supported variable
63 __all__ = __always_supported + ('new', 'algorithms')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hashlib.py 18 More algorithms may be available on your platform but the above are
61 algorithms = __always_supported variable
63 __all__ = __always_supported + ('new', 'algorithms')
  /external/python/cpython2/Lib/test/
test_hashlib.py 55 algorithms = set()
57 algorithms.add(algorithm.lower())
59 for algorithm in algorithms:
74 # These two algorithms should always be present when this module
108 self.assertEqual(hashlib.algorithms,
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
MessageDigest2Test.java 66 for (List<String> algorithms : digestAlgs.values()) {
67 for (String algorithm : algorithms) {
337 for (List<String> algorithms : digestAlgs.values()) {
338 for (String algorithm : algorithms) {
436 * Returns the digest algorithms that the given provider supports.
440 fail("No digest algorithms were found");
452 fail("No digest algorithms were found");

Completed in 443 milliseconds

1 2 3 4 5 6