Home
last modified time | relevance | path

Searched defs:gcm (Results 1 – 25 of 79) sorted by relevance

1234

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/cipher/
Dgcm.go70 type gcm struct { struct
71 cipher Block
72 nonceSize int
73 tagSize int
76 productTable [16]gcmFieldElement
160 func (g *gcm) NonceSize() int {
164 func (g *gcm) Overhead() int {
168 func (g *gcm) Seal(dst, nonce, plaintext, data []byte) []byte {
198 func (g *gcm) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {
288 func (g *gcm) mul(y *gcmFieldElement) {
[all …]
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/aead/internal/
H A DInsecureNonceAesGcmJceTest.java80 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ true); in testEncryptDecrypt_withPrependedIv() local
98 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ false); in testEncryptDecrypt_withoutPrependedIv() local
116 InsecureNonceAesGcmJce gcm = in testEncryptWithAad_shouldFailOnAndroid19OrOlder() local
137 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ false); in testLongMessages() local
154 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ false); in testModifyCiphertext() local
193 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ true); in testModifyPrependedIv() local
209 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ false); in testTruncatedCiphertext() local
225 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ true); in testTruncatedCiphertextWithPrependedIv() local
279 InsecureNonceAesGcmJce gcm = new InsecureNonceAesGcmJce(key, /*prependIv=*/ false); in testWycheproofVectors() local
322 InsecureNonceAesGcmJce gcm = in testNullPlaintextOrCiphertext() local
[all …]
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/subtle/
H A DAesGcmJceTest.java77 AesGcmJce gcm = new AesGcmJce(key); in testEncryptDecrypt() local
94 AesGcmJce gcm = new AesGcmJce(Random.randBytes(16)); in testEncryptWithAad_shouldFailOnAndroid19OrOlder() local
113 AesGcmJce gcm = new AesGcmJce(key); in testLongMessages() local
129 AesGcmJce gcm = new AesGcmJce(key); in testModifyCiphertext() local
205 AesGcmJce gcm = new AesGcmJce(key); in testWycheproofVectors() local
238 AesGcmJce gcm = new AesGcmJce(Random.randBytes(keySize)); in testNullPlaintextOrCiphertext() local
270 AesGcmJce gcm = new AesGcmJce(key); in testEmptyAssociatedData() local
327 AesGcmJce gcm = new AesGcmJce(key); in testRandomNonce() local
H A DAeadThreadSafetyTest.java134 AesGcmJce gcm = new AesGcmJce(key); in testAesGcm() local
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/aead/subtle/
H A DAesGcmSivTest.java68 AesGcmSiv gcm = new AesGcmSiv(key); in testEncryptDecrypt() local
91 AesGcmSiv gcm = new AesGcmSiv(key); in testLongMessages() local
105 AesGcmSiv gcm = new AesGcmSiv(key); in testModifyCiphertext() local
173 AesGcmSiv gcm = new AesGcmSiv(key); in testWycheproofVectors() local
204 AesGcmSiv gcm = new AesGcmSiv(Random.randBytes(keySize)); in testNullPlaintextOrCiphertext() local
234 AesGcmSiv gcm = new AesGcmSiv(key); in testEmptyAssociatedData() local
277 AesGcmSiv gcm = new AesGcmSiv(key); in testRandomNonce() local
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/cipher/
De_aes.c128 GCM128_CONTEXT gcm; member
982 GCM128_CONTEXT gcm; in aead_aes_gcm_seal_scatter_impl() local
1058 GCM128_CONTEXT gcm; in aead_aes_gcm_open_gather_impl() local
/aosp_15_r20/external/boringssl/src/crypto/fipsmodule/cipher/
H A De_aes.c126 GCM128_CONTEXT gcm; member
967 GCM128_CONTEXT gcm; in aead_aes_gcm_seal_scatter_impl() local
1043 GCM128_CONTEXT gcm; in aead_aes_gcm_open_gather_impl() local
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/fipsmodule/cipher/
De_aes.c128 GCM128_CONTEXT gcm; member
982 GCM128_CONTEXT gcm; in aead_aes_gcm_seal_scatter_impl() local
1058 GCM128_CONTEXT gcm; in aead_aes_gcm_open_gather_impl() local
/aosp_15_r20/external/cronet/third_party/boringssl/src/crypto/fipsmodule/cipher/
H A De_aes.c126 GCM128_CONTEXT gcm; member
967 GCM128_CONTEXT gcm; in aead_aes_gcm_seal_scatter_impl() local
1043 GCM128_CONTEXT gcm; in aead_aes_gcm_open_gather_impl() local
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/modes/
Dgcm_test.cc167 GCM128_CONTEXT gcm; in TEST() local
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/fipsmodule/modes/
Dgcm_test.cc167 GCM128_CONTEXT gcm; in TEST() local
/aosp_15_r20/external/libsrtp2/crypto/cipher/
H A Daes_gcm_ossl.c81 srtp_aes_gcm_ctx_t *gcm; in srtp_aes_gcm_openssl_alloc() local
H A Daes_gcm_nss.c83 srtp_aes_gcm_ctx_t *gcm; in srtp_aes_gcm_nss_alloc() local
/aosp_15_r20/external/rust/android-crates-io/crates/ring/src/
Daead.rs242 mod gcm; module
/aosp_15_r20/external/mesa3d/src/freedreno/ir3/
H A Dir3_nir.c274 static int gcm = -1; in ir3_optimize_loop() local
/aosp_15_r20/external/mbedtls/programs/test/
H A Dbenchmark.c747 mbedtls_gcm_context gcm; in main() local
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/test/
H A Dbenchmark.c826 mbedtls_gcm_context gcm; in main() local
/aosp_15_r20/out/soong/.intermediates/external/bouncycastle/bouncycastle-unbundled/android_common/turbine/
Dbouncycastle-unbundled.jarorg/bouncycastle/asn1/ASN1ApplicationSpecific.class <Unknown> package org.bouncycastle.asn1 public ...
/aosp_15_r20/out/soong/.intermediates/external/bouncycastle/bouncycastle-unbundled/android_common_apex30/turbine/
Dbouncycastle-unbundled.jarorg/bouncycastle/asn1/ASN1ApplicationSpecific.class <Unknown> package org.bouncycastle.asn1 public ...
/aosp_15_r20/out/soong/.intermediates/external/bouncycastle/bouncycastle-uwb/android_common_apex33/turbine/
Dbouncycastle-uwb.jarorg/bouncycastle/asn1/ASN1ApplicationSpecific.class <Unknown> package org.bouncycastle.asn1 public ...
/aosp_15_r20/out/target/common/obj/JAVA_LIBRARIES/bouncycastle.com.android.art.debug_intermediates/
Dclasses-header.jarcom/android/org/bouncycastle/asn1/ASN1ApplicationSpecific.class <Unknown> package com. ...
/aosp_15_r20/out/soong/.intermediates/external/bouncycastle/bouncycastle/android_common_apex31/turbine-combined/
Dbouncycastle.jarcom/android/org/bouncycastle/asn1/ASN1ApplicationSpecific.class <Unknown> package com. ...
/aosp_15_r20/out/soong/.intermediates/external/bouncycastle/bouncycastle/android_common_apex31/turbine/
Dbouncycastle.jarcom/android/org/bouncycastle/asn1/ASN1ApplicationSpecific.class <Unknown> package com. ...
/aosp_15_r20/out/soong/.intermediates/external/bouncycastle/bouncycastle-repackaged-unbundled/android_common/turbine/
Dbouncycastle-repackaged-unbundled.jarcom/android/internal/org/bouncycastle/cert/AttributeCertificateHolder.class <Unknown> package ...
/aosp_15_r20/prebuilts/devtools/tools/lib/
HDbcprov-jdk15on-1.48.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY ...

1234