Home
last modified time | relevance | path

Searched defs:cipher (Results 1 – 25 of 1391) sorted by relevance

12345678910>>...56

/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/ssl/
Dssl_cipher.cc476 const SSL_CIPHER *cipher; member
561 size_t *out_fixed_iv_len, const SSL_CIPHER *cipher, in ssl_cipher_get_evp_aead()
638 const SSL_CIPHER *cipher) { in ssl_get_handshake_digest()
715 for (const SSL_CIPHER &cipher : kCiphers) { in ssl_cipher_collect_ciphers() local
786 void SSLCipherPreferenceList::Remove(const SSL_CIPHER *cipher) { in Remove()
1080 const SSL_CIPHER *cipher = &kCiphers[j]; in ssl_cipher_process_rulestr() local
1295 bool ssl_cipher_uses_certificate_auth(const SSL_CIPHER *cipher) { in ssl_cipher_uses_certificate_auth()
1299 bool ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher) { in ssl_cipher_requires_server_key_exchange()
1305 size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher) { in ssl_cipher_get_record_split_len()
1369 uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *cipher) { return cipher->id; } in SSL_CIPHER_get_id()
[all …]
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/ssl/
Dssl_cipher.cc476 const SSL_CIPHER *cipher; member
561 size_t *out_fixed_iv_len, const SSL_CIPHER *cipher, in ssl_cipher_get_evp_aead()
638 const SSL_CIPHER *cipher) { in ssl_get_handshake_digest()
715 for (const SSL_CIPHER &cipher : kCiphers) { in ssl_cipher_collect_ciphers() local
786 void SSLCipherPreferenceList::Remove(const SSL_CIPHER *cipher) { in Remove()
1080 const SSL_CIPHER *cipher = &kCiphers[j]; in ssl_cipher_process_rulestr() local
1295 bool ssl_cipher_uses_certificate_auth(const SSL_CIPHER *cipher) { in ssl_cipher_uses_certificate_auth()
1299 bool ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher) { in ssl_cipher_requires_server_key_exchange()
1305 size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher) { in ssl_cipher_get_record_split_len()
1369 uint32_t SSL_CIPHER_get_id(const SSL_CIPHER *cipher) { return cipher->id; } in SSL_CIPHER_get_id()
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/ssl/
H A Dssl_cipher.cc472 for (const auto &cipher : kCiphers) { in NumTLS13Ciphers() local
487 const SSL_CIPHER *cipher; member
578 size_t *out_fixed_iv_len, const SSL_CIPHER *cipher, in ssl_cipher_get_evp_aead()
661 const SSL_CIPHER *cipher) { in ssl_get_handshake_digest()
761 void SSLCipherPreferenceList::Remove(const SSL_CIPHER *cipher) { in Remove()
775 bool ssl_cipher_is_deprecated(const SSL_CIPHER *cipher) { in ssl_cipher_is_deprecated()
1054 const SSL_CIPHER *cipher = &kCiphers[j]; in ssl_cipher_process_rulestr() local
1291 bool ssl_cipher_uses_certificate_auth(const SSL_CIPHER *cipher) { in ssl_cipher_uses_certificate_auth()
1295 bool ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher) { in ssl_cipher_requires_server_key_exchange()
1301 size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher) { in ssl_cipher_get_record_split_len()
[all …]
/aosp_15_r20/external/boringssl/src/ssl/
H A Dssl_cipher.cc472 for (const auto &cipher : kCiphers) { in NumTLS13Ciphers() local
487 const SSL_CIPHER *cipher; member
578 size_t *out_fixed_iv_len, const SSL_CIPHER *cipher, in ssl_cipher_get_evp_aead()
661 const SSL_CIPHER *cipher) { in ssl_get_handshake_digest()
761 void SSLCipherPreferenceList::Remove(const SSL_CIPHER *cipher) { in Remove()
775 bool ssl_cipher_is_deprecated(const SSL_CIPHER *cipher) { in ssl_cipher_is_deprecated()
1054 const SSL_CIPHER *cipher = &kCiphers[j]; in ssl_cipher_process_rulestr() local
1291 bool ssl_cipher_uses_certificate_auth(const SSL_CIPHER *cipher) { in ssl_cipher_uses_certificate_auth()
1295 bool ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher) { in ssl_cipher_requires_server_key_exchange()
1301 size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher) { in ssl_cipher_get_record_split_len()
[all …]
/aosp_15_r20/external/wycheproof/keystore-cts/java/com/google/security/wycheproof/testcases/
H A DAesGcmTest.java111 Cipher cipher = Cipher.getInstance(algorithm, in getInitializedCipherInstance() local
267 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.ENCRYPT_MODE, in testVectors() local
289 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.ENCRYPT_MODE, in testEncryptWithEmptyArrays() local
323 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.DECRYPT_MODE, in testDecryptWithEmptyArrays() local
389 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.ENCRYPT_MODE, test, in testLateUpdateAAD() local
430 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.ENCRYPT_MODE, test, in testIvReuse() local
464 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.ENCRYPT_MODE, in testByteBufferSize() local
490 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.ENCRYPT_MODE, in testByteBuffer() local
523 Cipher cipher = getInitializedCipherInstance("AES/GCM/NoPadding", Cipher.ENCRYPT_MODE, in testByteBufferAlias() local
572 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding", EXPECTED_PROVIDER_NAME); in testLargeArrayAlias() local
[all …]
/aosp_15_r20/libcore/luni/src/test/java/libcore/javax/crypto/
H A DCipherInputStreamTest.java110 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testAvailable() local
119 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testDecrypt_NullInput_Discarded() local
132 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testEncrypt() local
144 Cipher cipher = Cipher.getInstance("RC4"); in testEncrypt_RC4() local
156 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testDecrypt() local
164 Cipher cipher = Cipher.getInstance("RC4"); in testDecrypt_RC4() local
172 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testSkip() local
189 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testCipherInputStream_TruncatedInput_Failure() local
197 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testCipherInputStream_NullInputStream_Failure() local
222 Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); in testCloseTwice() local
[all …]
/aosp_15_r20/external/wycheproof/java/com/google/security/wycheproof/testcases/
H A DAesGcmTest.java136 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in getTestVectors() local
150 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testVectors() local
171 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testLateUpdateAAD() local
203 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testIvReuse() local
225 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testByteBuffer() local
249 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testByteBufferAlias() local
274 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testReadOnlyByteBuffer() local
303 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testByteBufferWithOffset() local
333 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testByteBufferTooShort() local
374 Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); in testDefaultTagSizeIvParameterSpec() local
[all …]
/aosp_15_r20/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
H A DOpenJdkEngineFactory.java59 public SSLEngine newClientEngine(String cipher, boolean useAlpn) { in newClientEngine()
67 public SSLEngine newServerEngine(String cipher, boolean useAlpn) { in newServerEngine()
87 public SSLEngine newClientEngine(String cipher, boolean useAlpn) { in newClientEngine()
96 public SSLEngine newServerEngine(String cipher, boolean useAlpn) { in newServerEngine()
118 public SSLEngine newClientEngine(String cipher, boolean useAlpn) { in newClientEngine()
128 public SSLEngine newServerEngine(String cipher, boolean useAlpn) { in newServerEngine()
153 public SSLEngine newClientEngine(String cipher, boolean useAlpn) { in newClientEngine()
159 public SSLEngine newServerEngine(String cipher, boolean useAlpn) { in newServerEngine()
185 public SSLEngine newClientEngine(String cipher, boolean useAlpn) { in newClientEngine()
191 public SSLEngine newServerEngine(String cipher, boolean useAlpn) { in newServerEngine()
[all …]
/aosp_15_r20/cts/tests/tests/keystore/src/android/keystore/cts/
H A DCipherTest.java346 Cipher cipher = Cipher.getInstance(algorithm, provider); in testAndroidKeyStoreKeysHandledByAndroidKeyStoreProviderWhenDecrypting() local
385 Cipher cipher = Cipher.getInstance(algorithm); in testAndroidKeyStorePublicKeysAcceptedByHighestPriorityProviderWhenEncrypting() local
415 Cipher cipher = Cipher.getInstance(algorithm, provider); in testEmptyPlaintextEncryptsAndDecrypts() local
467 Cipher cipher = Cipher.getInstance(algorithm, provider); in testEncryptsAndDecryptsInterrupted() local
520 Cipher cipher = Cipher.getInstance(algorithm, provider); in testEncryptsAndDecryptsUsingCipherStreams() local
571 private boolean isDecryptValid(byte[] expectedPlaintext, byte[] ciphertext, Cipher cipher, in isDecryptValid()
656 Cipher cipher = Cipher.getInstance(algorithm, provider); in testEmptyPlaintextEncryptsAndDecryptsWhenUnlockedRequired() local
731 Cipher cipher = Cipher.getInstance(algorithm, EXPECTED_PROVIDER_NAME); in testUnlockedDeviceRequiredKeysAreNotInvalidatedByLockRemoval() local
755 Cipher cipher = Cipher.getInstance(algorithm, provider); in testCiphertextGeneratedByAndroidKeyStoreDecryptsByAndroidKeyStore() local
803 Cipher cipher; in testCiphertextGeneratedByHighestPriorityProviderDecryptsByAndroidKeyStore() local
[all …]
H A DRSACipherTest.java93 Cipher cipher = Cipher.getInstance("RSA/ECB/NoPadding", provider); in testNoPaddingEncryptionAndDecryptionSucceedsWithInputShorterThanModulus() local
124 Cipher cipher = Cipher.getInstance("RSA/ECB/NoPadding", provider); in testNoPaddingEncryptionSucceedsWithPlaintextOneSmallerThanModulus() local
151 Cipher cipher = Cipher.getInstance("RSA/ECB/NoPadding", provider); in testNoPaddingEncryptionFailsWithPlaintextEqualToModulus() local
181 Cipher cipher = Cipher.getInstance("RSA/ECB/NoPadding", provider); in testNoPaddingEncryptionFailsWithPlaintextOneLargerThanModulus() local
214 Cipher cipher = Cipher.getInstance("RSA/ECB/NoPadding", provider); in testNoPaddingEncryptionFailsWithPlaintextOneByteLongerThanModulus() local
247 Cipher cipher = Cipher.getInstance("RSA/ECB/NoPadding", EXPECTED_PROVIDER_NAME); in testNoPaddingDecryptionFailsWithCiphertextOneByteLongerThanModulus() local
275 Cipher cipher = Cipher.getInstance("RSA/ECB/NoPadding", EXPECTED_PROVIDER_NAME); in testNoPaddingWithZeroMessage() local
312 Cipher cipher = Cipher.getInstance("RSA/ECB/OAEPWithSHA-256AndMGF1Padding"); in testRsaOaepDecryptWithWrongMGF1DigestFails() local
/aosp_15_r20/external/rust/android-crates-io/crates/coset/src/encrypt/
Dtests.rs685 let cipher = FakeCipher {}; in test_cose_recipient_roundtrip() localVariable
736 let cipher = FakeCipher {}; in test_cose_recipient_noncanonical() localVariable
776 let cipher = FakeCipher {}; in test_cose_recipient_result() localVariable
807 let cipher = FakeCipher {}; in test_cose_recipient_missing_ciphertext() localVariable
822 let cipher = FakeCipher {}; in test_cose_recipient_builder_invalid_context() localVariable
840 let cipher = FakeCipher {}; in test_cose_recipient_decrypt_invalid_context() localVariable
861 let cipher = FakeCipher {}; in test_cose_encrypt_roundtrip() localVariable
899 let cipher = FakeCipher {}; in test_cose_encrypt_noncanonical() localVariable
943 let cipher = FakeCipher {}; in test_cose_encrypt_status() localVariable
964 let cipher = FakeCipher {}; in test_cose_encrypt_missing_ciphertext() localVariable
[all …]
/aosp_15_r20/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DCipherTest.java92 Cipher cipher = Cipher.getInstance("DESede/CBC/PKCS5Padding"); in test_getInstanceLjava_lang_String() local
114 Cipher cipher = Cipher.getInstance("DES", providers[i].getName()); in test_getInstanceLjava_lang_StringLjava_lang_String() local
148 Cipher cipher = Cipher.getInstance("DES", providers[i]); in test_getInstanceLjava_lang_StringLjava_security_Provider() local
176 Cipher cipher = Cipher.getInstance("AES", provider.getName()); in test_getProvider() local
190 Cipher cipher = Cipher.getInstance(algorithm); in test_getAlgorithm() local
201 Cipher cipher = Cipher.getInstance(algorithm); in test_getBlockSize() local
210 Cipher cipher = Cipher.getInstance(ALGORITHM_3DES + "/ECB/PKCS5Padding"); in test_getOutputSizeI() local
233 Cipher cipher = Cipher.getInstance(ALGORITHM_3DES + "/ECB/PKCS5Padding"); in test_initWithKey() local
250 Cipher cipher = Cipher.getInstance(ALGORITHM_3DES + "/ECB/PKCS5Padding"); in test_initWithSecureRandom() local
268 Cipher cipher = Cipher.getInstance(ALGORITHM_3DES + "/CBC/PKCS5Padding"); in test_initWithAlgorithmParameterSpec() local
[all …]
H A DSealedObjectTest.java109 Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding"); in testSealedObject1() local
138 Cipher cipher = new NullCipher(); in testSealedObject2() local
160 Cipher cipher = Cipher.getInstance(algorithm); in testGetAlgorithm() local
175 Cipher cipher = Cipher.getInstance(algorithm); in testGetAlgorithmAfterSerialization() local
208 Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding"); in testGetObject1() local
252 Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding"); in testGetObject2() local
296 Cipher cipher = Cipher.getInstance("DES"); in testGetObject3() local
330 Cipher cipher = Cipher.getInstance("DES"); in testDeserialization() local
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/aead/internal/
H A DInsecureNonceChaCha20Poly1305Test.java83 InsecureNonceChaCha20Poly1305 cipher = in testDecryptThrowsGeneralSecurityExpWhenCiphertextIsTooShort() local
98 InsecureNonceChaCha20Poly1305 cipher = in testEncryptDecrypt() local
122 InsecureNonceChaCha20Poly1305 cipher = createInstance(key); in testLongMessages() local
135 InsecureNonceChaCha20Poly1305 cipher = createInstance(key); in testModifyCiphertext() local
171 InsecureNonceChaCha20Poly1305 cipher = in testNullPlaintextOrCiphertext() local
202 InsecureNonceChaCha20Poly1305 cipher = in testEmptyAssociatedData() local
245 InsecureNonceChaCha20Poly1305 cipher = createInstance(key); in testNonce() local
291 InsecureNonceChaCha20Poly1305 cipher = createInstance(key); in testWycheproofVectors() local
H A DInsecureNonceXChaCha20Poly1305Test.java100 InsecureNonceXChaCha20Poly1305 cipher = new InsecureNonceXChaCha20Poly1305(test.key); in testXChaCha20Poly1305TestVectors() local
130 InsecureNonceXChaCha20Poly1305 cipher = in testDecryptThrowsGeneralSecurityExpWhenCiphertextIsTooShort() local
146 InsecureNonceXChaCha20Poly1305 cipher = in testEncryptDecrypt() local
169 InsecureNonceXChaCha20Poly1305 cipher = new InsecureNonceXChaCha20Poly1305(key); in testLongMessages() local
181 InsecureNonceXChaCha20Poly1305 cipher = new InsecureNonceXChaCha20Poly1305(key); in testModifyCiphertext() local
228 InsecureNonceXChaCha20Poly1305 cipher = new InsecureNonceXChaCha20Poly1305(key); in testSameNonce() local
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/cipher/
Dcipher.c135 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
231 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
236 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
592 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; } in EVP_CIPHER_nid()
594 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) { in EVP_CIPHER_block_size()
598 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_key_length()
602 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_iv_length()
606 uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher) { in EVP_CIPHER_flags()
610 uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher) { in EVP_CIPHER_mode()
614 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/fipsmodule/cipher/
Dcipher.c135 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
231 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
236 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
592 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; } in EVP_CIPHER_nid()
594 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) { in EVP_CIPHER_block_size()
598 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_key_length()
602 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_iv_length()
606 uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher) { in EVP_CIPHER_flags()
610 uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher) { in EVP_CIPHER_mode()
614 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/crypto/fipsmodule/cipher/
H A Dcipher.c139 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
237 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
242 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
661 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; } in EVP_CIPHER_nid()
663 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) { in EVP_CIPHER_block_size()
667 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_key_length()
671 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_iv_length()
675 uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher) { in EVP_CIPHER_flags()
679 uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher) { in EVP_CIPHER_mode()
683 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
[all …]
/aosp_15_r20/external/boringssl/src/crypto/fipsmodule/cipher/
H A Dcipher.c139 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
237 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
242 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
661 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; } in EVP_CIPHER_nid()
663 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) { in EVP_CIPHER_block_size()
667 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_key_length()
671 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_iv_length()
675 uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher) { in EVP_CIPHER_flags()
679 uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher) { in EVP_CIPHER_mode()
683 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
[all …]
/aosp_15_r20/external/rust/beto-rust/nearby/presence/ldt_np_jni/java/LdtNpJni/src/test/java/com/google/android/gms/nearby/presence/hazmat/
DLdtNpJniTests.kt71 val cipher = LdtEncryptionCipher(keySeed) in <lambda>() constant
85 val cipher = LdtEncryptionCipher(keySeed) in <lambda>() constant
119 val cipher = LdtDecryptionCipher(keySeed, hmacTag) in <lambda>() constant
137 val cipher = LdtDecryptionCipher(keySeed, hmacTag) in <lambda>() constant
151 val cipher = LdtDecryptionCipher(keySeed, hmacTag) in <lambda>() constant
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/subtle/
H A DAeadThreadSafetyTest.java71 private Aead cipher; field in AeadThreadSafetyTest.CryptingThread
81 CryptingThread(Aead cipher, int maxPlaintextSize, int count) { in CryptingThread()
114 Aead cipher, int numberOfThreads, int maxPlaintextSize, int numberOfEncryptionsPerThread) in testEncryptionDecryption()
151 IndCpaCipher cipher = new AesCtrJceCipher(key, ivSize); in testAesCtrHmac() local
171 Aead cipher = new ChaCha20Poly1305(key); in testChaCha20Poly1305() local
178 Aead cipher = new XChaCha20Poly1305(key); in testXChaCha20Poly1305() local
/aosp_15_r20/external/tink/cc/subtle/
H A Daes_eax_boringssl_test.cc53 auto cipher = std::move(res.value()); in TEST() local
74 auto cipher = std::move(res.value()); in TEST() local
97 auto cipher = std::move(res.value()); in TEST() local
120 auto cipher = std::move(res.value()); in TEST() local
139 auto cipher = std::move(AesEaxBoringSsl::New(key, nonce_size).value()); in TEST() local
175 auto cipher = AesEaxBoringSsl::New(key, nonce_size); in TEST() local
195 auto cipher = std::move(res.value()); in TEST() local
287 auto cipher = std::move(AesEaxBoringSsl::New(key, iv_size / 8).value()); in WycheproofTest() local
/aosp_15_r20/external/boringssl/src/rust/bssl-crypto/src/cipher/
H A Daes_cbc.rs88 let cipher = Aes128Cbc::new_encrypt(&key, &iv); in aes_128_cbc_test_encrypt() localVariable
105 let cipher = Aes128Cbc::new_encrypt(&key, &iv); in aes_128_cbc_test_encrypt_more_than_one_block() localVariable
121 let cipher = Aes128Cbc::new_decrypt(&key, &iv); in aes_128_cbc_test_decrypt() localVariable
137 let cipher = Aes128Cbc::new_decrypt(&key, &iv); in aes_128_cbc_test_decrypt_empty_message() localVariable
153 let cipher = Aes256Cbc::new_encrypt(&key, &iv); in aes_256_cbc_test_encrypt() localVariable
170 let cipher = Aes256Cbc::new_encrypt(&key, &iv); in aes_256_cbc_test_encrypt_more_than_one_block() localVariable
186 let cipher = Aes256Cbc::new_decrypt(&key, &iv); in aes_256_cbc_test_decrypt() localVariable
/aosp_15_r20/external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/cipher/
H A Daes_cbc.rs88 let cipher = Aes128Cbc::new_encrypt(&key, &iv); in aes_128_cbc_test_encrypt() localVariable
105 let cipher = Aes128Cbc::new_encrypt(&key, &iv); in aes_128_cbc_test_encrypt_more_than_one_block() localVariable
121 let cipher = Aes128Cbc::new_decrypt(&key, &iv); in aes_128_cbc_test_decrypt() localVariable
137 let cipher = Aes128Cbc::new_decrypt(&key, &iv); in aes_128_cbc_test_decrypt_empty_message() localVariable
153 let cipher = Aes256Cbc::new_encrypt(&key, &iv); in aes_256_cbc_test_encrypt() localVariable
170 let cipher = Aes256Cbc::new_encrypt(&key, &iv); in aes_256_cbc_test_encrypt_more_than_one_block() localVariable
186 let cipher = Aes256Cbc::new_decrypt(&key, &iv); in aes_256_cbc_test_decrypt() localVariable
/aosp_15_r20/external/wpa_supplicant_8/src/common/
H A Dwpa_common.c396 struct wpa_ptk *ptk, int akmp, int cipher, in wpa_pmk_to_ptk()
669 u8 *ick, size_t *ick_len, int akmp, int cipher, in fils_pmk_to_ptk()
1438 bool pasn_use_sha384(int akmp, int cipher) in pasn_use_sha384()
1465 struct wpa_ptk *ptk, int akmp, int cipher, in pasn_pmk_to_ptk()
1574 u8 pasn_mic_len(int akmp, int cipher) in pasn_mic_len()
1590 int wpa_ltf_keyseed(struct wpa_ptk *ptk, int akmp, int cipher) in wpa_ltf_keyseed()
1659 int pasn_mic(const u8 *kck, int akmp, int cipher, in pasn_mic()
1735 int pasn_auth_frame_hash(int akmp, int cipher, const u8 *data, size_t len, in pasn_auth_frame_hash()
1842 int wpa_cipher_valid_group(int cipher) in wpa_cipher_valid_group()
1849 int wpa_cipher_valid_mgmt_group(int cipher) in wpa_cipher_valid_mgmt_group()
[all …]

12345678910>>...56