| /external/conscrypt/testing/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...] |
| /libcore/support/src/test/java/libcore/java/security/ |
| StandardNames.java | 96 * A map from algorithm type (e.g. Cipher) to a set of algorithms (e.g. AES, DES, ...) 111 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); local 112 if (algorithms == null) { 113 algorithms = new HashSet<String>(); 114 PROVIDER_ALGORITHMS.put(type, algorithms); 117 algorithms.add(algorithm.toUpperCase(Locale.ROOT))); 120 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); local 121 assertNotNull(algorithms); 122 assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase(Locale.ROOT))); 123 if (algorithms.isEmpty()) [all...] |
| /libcore/ojluni/src/main/java/sun/security/jca/ |
| GetInstance.java | 124 List<String> algorithms) { 126 return list.getServices(type, algorithms); 131 * the specified algorithms. See getServices(String, String) for detals.
|
| ProviderList.java | 348 * of the specified algorithms in precedence order. If no implementation 365 public List<Service> getServices(String type, List<String> algorithms) { 367 for (String alg : algorithms) { 439 // check all algorithms in this provider before moving on
|
| /system/tpm/trunks/ |
| tpm_state_impl.cc | 60 LOG(ERROR) << "Failed to query TPM algorithms: " << GetErrorString(result); 258 i < capability_data.algorithms.count && i < MAX_CAP_ALGS; ++i) { 260 capability_data.algorithms.alg_properties[i];
|
| /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
| KeyFactoryTest.java | 137 String[] algorithms = { local 158 for (int i = 0; i < algorithms.length; i++) { 159 String algorithm = algorithms[i];
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
| hashlib.py | 18 More algorithms may be available on your platform but the above are guaranteed
65 algorithms = __always_supported
variable 68 'algorithms_available', 'algorithms',
|
| /external/vboot_reference/scripts/ |
| genpadding.sh | 8 # various combinations of RSA key lengths and message digest algorithms. 45 * arrays corresponding to various combinations of algorithms for RSA signatures.
|
| /hardware/libhardware/include/hardware/ |
| keymaster1.h | 124 * Gets algorithms supported. 128 * \param[out] algorithms Array of algorithms supported. The caller takes ownership of the 131 * \param[out] algorithms_length Length of \p algorithms. 134 keymaster_algorithm_t** algorithms, 260 * algorithms that require them.
|
| /prebuilts/go/darwin-x86/src/hash/crc32/ |
| crc32_generic.go | 5 // This file contains CRC32 algorithms that are not specific to any architecture
|
| /prebuilts/go/darwin-x86/test/ |
| bigalg.go | 7 // Test the internal "algorithms" for objects larger than a word: hashing, equality etc.
|
| /prebuilts/go/linux-x86/src/hash/crc32/ |
| crc32_generic.go | 5 // This file contains CRC32 algorithms that are not specific to any architecture
|
| /prebuilts/go/linux-x86/test/ |
| bigalg.go | 7 // Test the internal "algorithms" for objects larger than a word: hashing, equality etc.
|
| /prebuilts/go/darwin-x86/src/sort/ |
| sort.go | 363 // The used algorithms are simple and provable correct on all input and use 365 // experimentally to other stable in-place sorting algorithms. 367 // Remarks on other algorithms evaluated: 373 // The given algorithms are in-place, number of Swap and Assignments 380 // - All the optimal in-place sorting/merging algorithms I found are either 382 // performed block rearrangements. See also "In-Place Merging Algorithms", 385 // - Often "optimal" algorithms are optimal in the number of assignments 423 // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in 553 Pay attention when comparing to other optimal algorithms which
|
| /prebuilts/go/linux-x86/src/sort/ |
| sort.go | 363 // The used algorithms are simple and provable correct on all input and use 365 // experimentally to other stable in-place sorting algorithms. 367 // Remarks on other algorithms evaluated: 373 // The given algorithms are in-place, number of Swap and Assignments 380 // - All the optimal in-place sorting/merging algorithms I found are either 382 // performed block rearrangements. See also "In-Place Merging Algorithms", 385 // - Often "optimal" algorithms are optimal in the number of assignments 423 // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in 553 Pay attention when comparing to other optimal algorithms which
|
| /prebuilts/go/darwin-x86/src/crypto/sha256/ |
| sha256.go | 5 // Package sha256 implements the SHA224 and SHA256 hash algorithms as defined
|
| /prebuilts/go/linux-x86/src/crypto/sha256/ |
| sha256.go | 5 // Package sha256 implements the SHA224 and SHA256 hash algorithms as defined
|
| /external/boringssl/src/ssl/test/runner/ |
| sign.go | 50 return 0, errors.New("tls: no common signature algorithms") 246 // TLS 1.1 and below use legacy signature algorithms.
|
| /system/keymaster/include/keymaster/ |
| soft_keymaster_device.h | 111 keymaster_algorithm_t** algorithms,
|
| /system/keymaster/ |
| soft_keymaster_device.cpp | 411 keymaster_algorithm_t** algorithms, 416 if (!algorithms || !algorithms_length) 421 return km1_dev->get_supported_algorithms(km1_dev, algorithms, algorithms_length); 433 *algorithms = 434 reinterpret_cast<keymaster_algorithm_t*>(malloc(*algorithms_length * sizeof(**algorithms))); 435 if (!*algorithms) 437 std::copy(response.results, response.results + response.results_length, *algorithms); [all...] |
| /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
| alg.go | 9 // AlgKind describes the kind of algorithms used for comparing and 214 // cannot be handled by the standard algorithms, 392 // cannot be handled by the standard algorithms,
|
| /prebuilts/go/darwin-x86/src/crypto/elliptic/ |
| elliptic.go | 371 // The cryptographic operations are implemented using constant-time algorithms. 379 // The cryptographic operations do not use constant-time algorithms. 387 // The cryptographic operations do not use constant-time algorithms.
|
| /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
| alg.go | 9 // AlgKind describes the kind of algorithms used for comparing and 214 // cannot be handled by the standard algorithms, 392 // cannot be handled by the standard algorithms,
|
| /prebuilts/go/linux-x86/src/crypto/elliptic/ |
| elliptic.go | 371 // The cryptographic operations are implemented using constant-time algorithms. 379 // The cryptographic operations do not use constant-time algorithms. 387 // The cryptographic operations do not use constant-time algorithms.
|
| /prebuilts/go/darwin-x86/src/crypto/sha512/ |
| sha512.go | 6 // hash algorithms as defined in FIPS 180-4.
|