/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/util/ |
D | DefaultJcaJceHelper.java | 39 String algorithm) in createCipher() argument 42 return Cipher.getInstance(algorithm); in createCipher() 45 public Mac createMac(String algorithm) in createMac() argument 48 return Mac.getInstance(algorithm); in createMac() 51 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 54 return KeyAgreement.getInstance(algorithm); in createKeyAgreement() 57 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 60 return AlgorithmParameterGenerator.getInstance(algorithm); in createAlgorithmParameterGenerator() 63 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 66 return AlgorithmParameters.getInstance(algorithm); in createAlgorithmParameters() [all …]
|
D | ProviderJcaJceHelper.java | 46 String algorithm) in createCipher() argument 49 return Cipher.getInstance(algorithm, provider); in createCipher() 52 public Mac createMac(String algorithm) in createMac() argument 55 return Mac.getInstance(algorithm, provider); in createMac() 58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 61 return KeyAgreement.getInstance(algorithm, provider); in createKeyAgreement() 64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 67 return AlgorithmParameterGenerator.getInstance(algorithm, provider); in createAlgorithmParameterGenerator() 70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 73 return AlgorithmParameters.getInstance(algorithm, provider); in createAlgorithmParameters() [all …]
|
D | NamedJcaJceHelper.java | 46 String algorithm) in createCipher() argument 49 return Cipher.getInstance(algorithm, providerName); in createCipher() 52 public Mac createMac(String algorithm) in createMac() argument 55 return Mac.getInstance(algorithm, providerName); in createMac() 58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 61 return KeyAgreement.getInstance(algorithm, providerName); in createKeyAgreement() 64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 67 return AlgorithmParameterGenerator.getInstance(algorithm, providerName); in createAlgorithmParameterGenerator() 70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 73 return AlgorithmParameters.getInstance(algorithm, providerName); in createAlgorithmParameters() [all …]
|
D | JcaJceHelper.java | 38 String algorithm) in createCipher() argument 41 Mac createMac(String algorithm) in createMac() argument 44 KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 47 AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 50 AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 53 KeyGenerator createKeyGenerator(String algorithm) in createKeyGenerator() argument 56 KeyFactory createKeyFactory(String algorithm) in createKeyFactory() argument 59 SecretKeyFactory createSecretKeyFactory(String algorithm) in createSecretKeyFactory() argument 62 KeyPairGenerator createKeyPairGenerator(String algorithm) in createKeyPairGenerator() argument 66 MessageDigest createDigest(String algorithm) in createDigest() argument [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/util/ |
D | DefaultJcaJceHelper.java | 37 String algorithm) in createCipher() argument 40 return Cipher.getInstance(algorithm); in createCipher() 43 public Mac createMac(String algorithm) in createMac() argument 46 return Mac.getInstance(algorithm); in createMac() 49 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 52 return KeyAgreement.getInstance(algorithm); in createKeyAgreement() 55 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 58 return AlgorithmParameterGenerator.getInstance(algorithm); in createAlgorithmParameterGenerator() 61 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 64 return AlgorithmParameters.getInstance(algorithm); in createAlgorithmParameters() [all …]
|
D | ProviderJcaJceHelper.java | 44 String algorithm) in createCipher() argument 47 return Cipher.getInstance(algorithm, provider); in createCipher() 50 public Mac createMac(String algorithm) in createMac() argument 53 return Mac.getInstance(algorithm, provider); in createMac() 56 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 59 return KeyAgreement.getInstance(algorithm, provider); in createKeyAgreement() 62 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 65 return AlgorithmParameterGenerator.getInstance(algorithm, provider); in createAlgorithmParameterGenerator() 68 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 71 return AlgorithmParameters.getInstance(algorithm, provider); in createAlgorithmParameters() [all …]
|
D | NamedJcaJceHelper.java | 44 String algorithm) in createCipher() argument 47 return Cipher.getInstance(algorithm, providerName); in createCipher() 50 public Mac createMac(String algorithm) in createMac() argument 53 return Mac.getInstance(algorithm, providerName); in createMac() 56 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 59 return KeyAgreement.getInstance(algorithm, providerName); in createKeyAgreement() 62 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 65 return AlgorithmParameterGenerator.getInstance(algorithm, providerName); in createAlgorithmParameterGenerator() 68 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 71 return AlgorithmParameters.getInstance(algorithm, providerName); in createAlgorithmParameters() [all …]
|
D | JcaJceHelper.java | 36 String algorithm) in createCipher() argument 39 Mac createMac(String algorithm) in createMac() argument 42 KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 45 AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 48 AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 51 KeyGenerator createKeyGenerator(String algorithm) in createKeyGenerator() argument 54 KeyFactory createKeyFactory(String algorithm) in createKeyFactory() argument 57 SecretKeyFactory createSecretKeyFactory(String algorithm) in createSecretKeyFactory() argument 60 KeyPairGenerator createKeyPairGenerator(String algorithm) in createKeyPairGenerator() argument 64 MessageDigest createDigest(String algorithm) in createDigest() argument [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/util/ |
D | DefaultJcaJceHelper.java | 39 String algorithm) in createCipher() argument 42 return Cipher.getInstance(algorithm); in createCipher() 45 public Mac createMac(String algorithm) in createMac() argument 48 return Mac.getInstance(algorithm); in createMac() 51 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 54 return KeyAgreement.getInstance(algorithm); in createKeyAgreement() 57 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 60 return AlgorithmParameterGenerator.getInstance(algorithm); in createAlgorithmParameterGenerator() 63 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 66 return AlgorithmParameters.getInstance(algorithm); in createAlgorithmParameters() [all …]
|
D | ProviderJcaJceHelper.java | 46 String algorithm) in createCipher() argument 49 return Cipher.getInstance(algorithm, provider); in createCipher() 52 public Mac createMac(String algorithm) in createMac() argument 55 return Mac.getInstance(algorithm, provider); in createMac() 58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 61 return KeyAgreement.getInstance(algorithm, provider); in createKeyAgreement() 64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 67 return AlgorithmParameterGenerator.getInstance(algorithm, provider); in createAlgorithmParameterGenerator() 70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 73 return AlgorithmParameters.getInstance(algorithm, provider); in createAlgorithmParameters() [all …]
|
D | NamedJcaJceHelper.java | 46 String algorithm) in createCipher() argument 49 return Cipher.getInstance(algorithm, providerName); in createCipher() 52 public Mac createMac(String algorithm) in createMac() argument 55 return Mac.getInstance(algorithm, providerName); in createMac() 58 public KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 61 return KeyAgreement.getInstance(algorithm, providerName); in createKeyAgreement() 64 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 67 return AlgorithmParameterGenerator.getInstance(algorithm, providerName); in createAlgorithmParameterGenerator() 70 public AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 73 return AlgorithmParameters.getInstance(algorithm, providerName); in createAlgorithmParameters() [all …]
|
D | JcaJceHelper.java | 38 String algorithm) in createCipher() argument 41 Mac createMac(String algorithm) in createMac() argument 44 KeyAgreement createKeyAgreement(String algorithm) in createKeyAgreement() argument 47 AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm) in createAlgorithmParameterGenerator() argument 50 AlgorithmParameters createAlgorithmParameters(String algorithm) in createAlgorithmParameters() argument 53 KeyGenerator createKeyGenerator(String algorithm) in createKeyGenerator() argument 56 KeyFactory createKeyFactory(String algorithm) in createKeyFactory() argument 59 SecretKeyFactory createSecretKeyFactory(String algorithm) in createSecretKeyFactory() argument 62 KeyPairGenerator createKeyPairGenerator(String algorithm) in createKeyPairGenerator() argument 66 MessageDigest createDigest(String algorithm) in createDigest() argument [all …]
|
/external/grpc-grpc/src/core/lib/compression/ |
D | compression.cc | 33 grpc_compression_algorithm algorithm) { in grpc_compression_algorithm_is_message() argument 34 return (algorithm >= GRPC_COMPRESS_DEFLATE && algorithm <= GRPC_COMPRESS_GZIP) in grpc_compression_algorithm_is_message() 39 int grpc_compression_algorithm_is_stream(grpc_compression_algorithm algorithm) { in grpc_compression_algorithm_is_stream() argument 40 return (algorithm == GRPC_COMPRESS_STREAM_GZIP) ? 1 : 0; in grpc_compression_algorithm_is_stream() 44 grpc_compression_algorithm* algorithm) { in grpc_compression_algorithm_parse() argument 46 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_parse() 49 *algorithm = GRPC_COMPRESS_DEFLATE; in grpc_compression_algorithm_parse() 52 *algorithm = GRPC_COMPRESS_GZIP; in grpc_compression_algorithm_parse() 55 *algorithm = GRPC_COMPRESS_STREAM_GZIP; in grpc_compression_algorithm_parse() 63 int grpc_compression_algorithm_name(grpc_compression_algorithm algorithm, in grpc_compression_algorithm_name() argument [all …]
|
D | compression_internal.cc | 52 grpc_message_compression_algorithm algorithm) { in grpc_message_compression_encoding_mdelem() argument 53 switch (algorithm) { in grpc_message_compression_encoding_mdelem() 67 grpc_stream_compression_algorithm algorithm) { in grpc_stream_compression_encoding_mdelem() argument 68 switch (algorithm) { in grpc_stream_compression_encoding_mdelem() 126 grpc_compression_algorithm* algorithm, in grpc_compression_algorithm_from_message_stream_compression_algorithm() argument 131 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 137 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 140 *algorithm = GRPC_COMPRESS_STREAM_GZIP; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 143 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 149 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/compression/ |
D | compression.cc | 34 grpc_compression_algorithm algorithm) { in grpc_compression_algorithm_is_message() argument 35 return (algorithm >= GRPC_COMPRESS_DEFLATE && algorithm <= GRPC_COMPRESS_GZIP) in grpc_compression_algorithm_is_message() 40 int grpc_compression_algorithm_is_stream(grpc_compression_algorithm algorithm) { in grpc_compression_algorithm_is_stream() argument 41 return (algorithm == GRPC_COMPRESS_STREAM_GZIP) ? 1 : 0; in grpc_compression_algorithm_is_stream() 45 grpc_compression_algorithm* algorithm) { in grpc_compression_algorithm_parse() argument 47 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_parse() 50 *algorithm = GRPC_COMPRESS_DEFLATE; in grpc_compression_algorithm_parse() 53 *algorithm = GRPC_COMPRESS_GZIP; in grpc_compression_algorithm_parse() 57 *algorithm = GRPC_COMPRESS_STREAM_GZIP; in grpc_compression_algorithm_parse() 64 int grpc_compression_algorithm_name(grpc_compression_algorithm algorithm, in grpc_compression_algorithm_name() argument [all …]
|
D | compression_internal.cc | 61 grpc_message_compression_algorithm algorithm) { in grpc_message_compression_encoding_mdelem() argument 62 switch (algorithm) { in grpc_message_compression_encoding_mdelem() 76 grpc_stream_compression_algorithm algorithm) { in grpc_stream_compression_encoding_mdelem() argument 77 switch (algorithm) { in grpc_stream_compression_encoding_mdelem() 135 grpc_compression_algorithm* algorithm, in grpc_compression_algorithm_from_message_stream_compression_algorithm() argument 140 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 146 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 149 *algorithm = GRPC_COMPRESS_STREAM_GZIP; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 152 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() 158 *algorithm = GRPC_COMPRESS_NONE; in grpc_compression_algorithm_from_message_stream_compression_algorithm() [all …]
|
/external/conscrypt/common/src/test/java/org/conscrypt/ |
D | MacTest.java | 75 String algorithm = entry[ALGORITHM_INDEX]; in knownAnswerTest() local 86 algorithm, key, msg, expected); in knownAnswerTest() 89 byte[] macBytes = generateMacUsingUpdate(algorithm, secretKey, msgBytes); in knownAnswerTest() 94 macBytes = generateMacUsingFinal(algorithm, secretKey, msgBytes); in knownAnswerTest() 100 macBytes = generateMac(algorithm, secretKey, nondirectBuffer); in knownAnswerTest() 108 macBytes = generateMac(algorithm, secretKey, directBuffer); in knownAnswerTest() 114 macBytes = generateMac(algorithm, secretKey, split(nondirectBuffer)); in knownAnswerTest() 120 macBytes = generateMac(algorithm, secretKey, split(directBuffer)); in knownAnswerTest() 125 macBytes = generateReusingMac(algorithm, keyBytes, msgBytes); in knownAnswerTest() 139 public void test(final Provider provider, final String algorithm) throws Exception { in serviceCreation() [all …]
|
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/ |
D | MacTest.java | 79 String algorithm = entry[ALGORITHM_INDEX]; in knownAnswerTest() local 90 algorithm, key, msg, expected); in knownAnswerTest() 93 byte[] macBytes = generateMacUsingUpdate(algorithm, secretKey, msgBytes); in knownAnswerTest() 98 macBytes = generateMacUsingFinal(algorithm, secretKey, msgBytes); in knownAnswerTest() 104 macBytes = generateMac(algorithm, secretKey, nondirectBuffer); in knownAnswerTest() 112 macBytes = generateMac(algorithm, secretKey, directBuffer); in knownAnswerTest() 118 macBytes = generateMac(algorithm, secretKey, split(nondirectBuffer)); in knownAnswerTest() 124 macBytes = generateMac(algorithm, secretKey, split(directBuffer)); in knownAnswerTest() 129 macBytes = generateReusingMac(algorithm, keyBytes, msgBytes); in knownAnswerTest() 144 public void test(final Provider provider, final String algorithm) in serviceCreation() [all …]
|
/external/webrtc/rtc_base/ |
D | openssl_digest.cc | 19 OpenSSLDigest::OpenSSLDigest(absl::string_view algorithm) { in OpenSSLDigest() argument 23 if (GetDigestEVP(algorithm, &md_)) { in OpenSSLDigest() 59 bool OpenSSLDigest::GetDigestEVP(absl::string_view algorithm, in GetDigestEVP() argument 62 if (algorithm == DIGEST_MD5) { in GetDigestEVP() 64 } else if (algorithm == DIGEST_SHA_1) { in GetDigestEVP() 66 } else if (algorithm == DIGEST_SHA_224) { in GetDigestEVP() 68 } else if (algorithm == DIGEST_SHA_256) { in GetDigestEVP() 70 } else if (algorithm == DIGEST_SHA_384) { in GetDigestEVP() 72 } else if (algorithm == DIGEST_SHA_512) { in GetDigestEVP() 84 bool OpenSSLDigest::GetDigestName(const EVP_MD* md, std::string* algorithm) { in GetDigestName() argument [all …]
|
D | ssl_fingerprint.cc | 31 SSLFingerprint* SSLFingerprint::Create(absl::string_view algorithm, in Create() argument 33 return CreateUnique(algorithm, *identity).release(); in Create() 37 absl::string_view algorithm, in CreateUnique() argument 39 return Create(algorithm, identity.certificate()); in CreateUnique() 43 absl::string_view algorithm, in Create() argument 47 bool ret = cert.ComputeDigest(algorithm, digest_val, sizeof(digest_val), in Create() 53 algorithm, ArrayView<const uint8_t>(digest_val, digest_len)); in Create() 57 absl::string_view algorithm, in CreateFromRfc4572() argument 59 return CreateUniqueFromRfc4572(algorithm, fingerprint).release(); in CreateFromRfc4572() 63 absl::string_view algorithm, in CreateUniqueFromRfc4572() argument [all …]
|
/external/rust/crates/ring/src/ |
D | agreement.rs | 94 algorithm: &'static Algorithm, field 100 algorithm 118 algorithm: alg, in generate() 133 algorithm: self.algorithm, in compute_public_key() 140 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method 141 self.algorithm in algorithm() 153 algorithm: &'static Algorithm, field 166 .field("algorithm", &self.algorithm) in fmt() 175 pub fn algorithm(&self) -> &'static Algorithm { in algorithm() method 176 self.algorithm in algorithm() [all …]
|
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/javax/crypto/ |
D | CipherTest.java | 120 private static boolean isSupported(String algorithm, String provider) { in isSupported() argument 121 if (algorithm.equals("RC2")) { in isSupported() 124 if (algorithm.equals("PBEWITHMD5ANDRC2")) { in isSupported() 127 if (algorithm.startsWith("PBEWITHSHA1ANDRC2")) { in isSupported() 130 if (algorithm.equals("PBEWITHSHAAND40BITRC2-CBC")) { in isSupported() 133 if (algorithm.equals("PBEWITHSHAAND128BITRC2-CBC")) { in isSupported() 136 if (algorithm.equals("PBEWITHSHAANDTWOFISH-CBC")) { in isSupported() 140 if (algorithm.equals("PBEWITHMD5ANDTRIPLEDES")) { in isSupported() 146 (algorithm.equals("AES/CFB/PKCS5PADDING") in isSupported() 147 || algorithm.equals("AES/CFB/PKCS7PADDING") in isSupported() [all …]
|
/external/conscrypt/common/src/test/java/org/conscrypt/javax/crypto/ |
D | CipherTest.java | 116 private static boolean isSupported(String algorithm, String provider) { in isSupported() argument 117 if (algorithm.equals("RC2")) { in isSupported() 120 if (algorithm.equals("PBEWITHMD5ANDRC2")) { in isSupported() 123 if (algorithm.startsWith("PBEWITHSHA1ANDRC2")) { in isSupported() 126 if (algorithm.equals("PBEWITHSHAAND40BITRC2-CBC")) { in isSupported() 129 if (algorithm.equals("PBEWITHSHAAND128BITRC2-CBC")) { in isSupported() 132 if (algorithm.equals("PBEWITHSHAANDTWOFISH-CBC")) { in isSupported() 136 if (algorithm.equals("PBEWITHMD5ANDTRIPLEDES")) { in isSupported() 142 (algorithm.equals("AES/CFB/PKCS5PADDING") in isSupported() 143 || algorithm.equals("AES/CFB/PKCS7PADDING") in isSupported() [all …]
|
/external/grpc-grpc/test/core/compression/ |
D | compression_test.cc | 41 grpc_compression_algorithm algorithm; in test_compression_algorithm_parse() local 43 grpc_slice_from_static_string(valid_name), &algorithm); in test_compression_algorithm_parse() 45 GPR_ASSERT(algorithm == valid_algorithms[i]); in test_compression_algorithm_parse() 50 grpc_compression_algorithm algorithm; in test_compression_algorithm_parse() local 53 grpc_slice_from_static_string(invalid_name), &algorithm); in test_compression_algorithm_parse() 228 grpc_compression_algorithm algorithm; in test_compression_enable_disable_algorithm() local 233 for (algorithm = GRPC_COMPRESS_NONE; in test_compression_enable_disable_algorithm() 234 algorithm < GRPC_COMPRESS_ALGORITHMS_COUNT; in test_compression_enable_disable_algorithm() 235 algorithm = static_cast<grpc_compression_algorithm>( in test_compression_enable_disable_algorithm() 236 static_cast<int>(algorithm) + 1)) { in test_compression_enable_disable_algorithm() [all …]
|
/external/conscrypt/common/src/test/java/org/conscrypt/java/security/ |
D | MessageDigestTest.java | 66 public void test(Provider provider, String algorithm) throws Exception { in test_getInstance() 68 MessageDigest md1 = MessageDigest.getInstance(algorithm); in test_getInstance() 69 assertEquals(algorithm, md1.getAlgorithm()); in test_getInstance() 73 MessageDigest md2 = MessageDigest.getInstance(algorithm, provider); in test_getInstance() 74 assertEquals(algorithm, md2.getAlgorithm()); in test_getInstance() 79 MessageDigest md3 = MessageDigest.getInstance(algorithm, provider.getName()); in test_getInstance() 80 assertEquals(algorithm, md3.getAlgorithm()); in test_getInstance() 89 private static void putExpectation(String algorithm, String inputName, byte[] expected) { in putExpectation() argument 90 algorithm = algorithm.toUpperCase(); in putExpectation() 91 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm); in putExpectation() [all …]
|