Home
last modified time | relevance | path

Searched refs:gcm (Results 1 – 25 of 42) sorted by relevance

12

/third_party/mbedtls/tests/suites/
Dtest_suite_gcm.camellia.data1 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #1 (128-en)
5 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #2 (128-en)
9 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #3 (128-en)
13 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #4 (128-en)
17 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #5 (128-en)
21 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #6 (128-en)
25 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #7 (192-en)
29 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #8 (192-en)
33 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #9 (192-en)
37 Camellia-GCM test vect draft-kato-ipsec-camellia-gcm #10 (192-en)
[all …]
Dtest_suite_gcm.function2 #include "mbedtls/gcm.h"
/third_party/mbedtls/tests/
DCMakeLists.txt86 add_test_suite(cipher cipher.gcm)
101 add_test_suite(gcm gcm.aes128_en)
102 add_test_suite(gcm gcm.aes192_en)
103 add_test_suite(gcm gcm.aes256_en)
104 add_test_suite(gcm gcm.aes128_de)
105 add_test_suite(gcm gcm.aes192_de)
106 add_test_suite(gcm gcm.aes256_de)
107 add_test_suite(gcm gcm.camellia)
108 add_test_suite(gcm gcm.misc)
/third_party/boringssl/src/crypto/fipsmodule/cipher/
De_aes.c126 GCM128_CONTEXT gcm; member
359 OPENSSL_memset(&gctx->gcm, 0, sizeof(gctx->gcm)); in aes_gcm_init_key()
360 gctx->ctr = aes_ctr_set_key(&gctx->ks.ks, &gctx->gcm.gcm_key, NULL, key, in aes_gcm_init_key()
367 CRYPTO_gcm128_setiv(&gctx->gcm, &gctx->ks.ks, iv, gctx->ivlen); in aes_gcm_init_key()
374 CRYPTO_gcm128_setiv(&gctx->gcm, &gctx->ks.ks, iv, gctx->ivlen); in aes_gcm_init_key()
386 OPENSSL_cleanse(&gctx->gcm, sizeof(gctx->gcm)); in aes_gcm_cleanup()
478 CRYPTO_gcm128_setiv(&gctx->gcm, &gctx->ks.ks, gctx->iv, gctx->ivlen); in aes_gcm_ctrl()
495 CRYPTO_gcm128_setiv(&gctx->gcm, &gctx->ks.ks, gctx->iv, gctx->ivlen); in aes_gcm_ctrl()
536 if (!CRYPTO_gcm128_aad(&gctx->gcm, in, len)) { in aes_gcm_cipher()
541 if (!CRYPTO_gcm128_encrypt_ctr32(&gctx->gcm, &gctx->ks.ks, in, out, len, in aes_gcm_cipher()
[all …]
/third_party/openssl/crypto/evp/
De_aria.c35 GCM128_CONTEXT gcm; member
218 CRYPTO_gcm128_init(&gctx->gcm, &gctx->ks, in aria_gcm_init_key()
231 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen); in aria_gcm_init_key()
238 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen); in aria_gcm_init_key()
319 CRYPTO_gcm128_setiv(&gctx->gcm, gctx->iv, gctx->ivlen); in aria_gcm_ctrl()
336 CRYPTO_gcm128_setiv(&gctx->gcm, gctx->iv, gctx->ivlen); in aria_gcm_ctrl()
370 if (gctx->gcm.key) { in aria_gcm_ctrl()
371 if (gctx->gcm.key != &gctx->ks) in aria_gcm_ctrl()
373 gctx_out->gcm.key = &gctx_out->ks; in aria_gcm_ctrl()
412 if (CRYPTO_gcm128_aad(&gctx->gcm, EVP_CIPHER_CTX_buf_noconst(ctx), in aria_gcm_tls_cipher()
[all …]
De_aes.c41 GCM128_CONTEXT gcm; member
261 gctx->gcm.ghash==gcm_ghash_avx)
262 # define AES_GCM_ASM2(gctx) (gctx->gcm.block==(block128_f)aesni_encrypt && \
263 gctx->gcm.ghash==gcm_ghash_avx)
354 CRYPTO_gcm128_init(&gctx->gcm, &gctx->ks, (block128_f) aesni_encrypt); in aesni_gcm_init_key()
362 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen); in aesni_gcm_init_key()
369 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen); in aesni_gcm_init_key()
760 CRYPTO_gcm128_init(&gctx->gcm, &gctx->ks, in aes_t4_gcm_init_key()
781 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen); in aes_t4_gcm_init_key()
788 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen); in aes_t4_gcm_init_key()
[all …]
/third_party/boringssl/src/crypto/fipsmodule/modes/
Dgcm_test.cc180 GCM128_CONTEXT gcm; in TEST() local
181 memset(&gcm, 0, sizeof(gcm)); in TEST()
182 memcpy(&gcm.gcm_key.H, kH, sizeof(kH)); in TEST()
183 memcpy(&gcm.gcm_key.Htable, Htable, sizeof(Htable)); in TEST()
184 memcpy(&gcm.Xi, X, sizeof(X)); in TEST()
190 gcm.Xi.u); in TEST()
192 gcm.Xi.u); in TEST()
197 gcm.Xi.u); in TEST()
199 gcm.Xi.u); in TEST()
/third_party/python/Tools/msi/
Duploadrelease.ps156 $t = gcm $n -EA 0 in find-putty-tool()
57 if (-not $t) { $t = gcm ".\$n" -EA 0 } in find-putty-tool()
58 if (-not $t) { $t = gcm "${env:ProgramFiles}\PuTTY\$n" -EA 0 } in find-putty-tool()
59 if (-not $t) { $t = gcm "${env:ProgramFiles(x86)}\PuTTY\$n" -EA 0 } in find-putty-tool()
/third_party/boringssl/src/crypto/cipher_extra/test/
Daes_192_gcm_tests.txt1 …tors from NIST: http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/gcm-spec.pdf
Daes_256_gcm_tests.txt424 …st vectors from http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/gcm-spec.pdf
Daes_128_gcm_tests.txt431 …st vectors from http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/gcm-spec.pdf
Dcipher_tests.txt278 …st vectors from http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/gcm-spec.pdf
/third_party/openssl/test/recipes/30-test_evp_data/
Devpciph.txt747 …st vectors from http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/gcm-spec.pdf
748 Cipher = aes-128-gcm
756 Cipher = aes-128-gcm
764 Cipher = aes-128-gcm
772 Cipher = aes-128-gcm
780 Cipher = aes-128-gcm
788 Cipher = aes-128-gcm
796 Cipher = aes-128-gcm
806 Cipher = aes-192-gcm
814 Cipher = aes-192-gcm
[all …]
/third_party/openssl/crypto/modes/
Dbuild.info13 GENERATE[aesni-gcm-x86_64.s]=asm/aesni-gcm-x86_64.pl $(PERLASM_SCHEME)
/third_party/mbedtls/programs/test/
Dbenchmark.c520 mbedtls_gcm_context gcm; in main() local
522 mbedtls_gcm_init( &gcm ); in main()
529 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize ); in main()
532 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp, in main()
535 mbedtls_gcm_free( &gcm ); in main()
/third_party/boringssl/src/crypto/fipsmodule/
DCMakeLists.txt7 aesni-gcm-x86_64.${ASM_EXT}
88 perlasm(aesni-gcm-x86_64.${ASM_EXT} modes/asm/aesni-gcm-x86_64.pl)
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
DMakefile27 aes-gcm.o \
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
DMakefile27 aes-gcm.o \
/third_party/cef/libcef/browser/alloy/
Dchrome_browser_process_alloy.h96 gcm::GCMDriver* gcm_driver() override;
Dchrome_browser_process_alloy.cc355 gcm::GCMDriver* ChromeBrowserProcessAlloy::gcm_driver() { in gcm_driver()
/third_party/mbedtls/library/
DMakefile75 error.o gcm.o havege.o \
DCMakeLists.txt33 gcm.c
/third_party/mbedtls/
Dmbedtls.gni67 "$MBEDTLSDIR/library/gcm.c",
/third_party/openssl/crypto/objects/
Dobjects.txt906 aes 6 : id-aes128-GCM : aes-128-gcm
917 aes 26 : id-aes192-GCM : aes-192-gcm
928 aes 46 : id-aes256-GCM : aes-256-gcm
1423 camellia 6 : CAMELLIA-128-GCM : camellia-128-gcm
1433 camellia 26 : CAMELLIA-192-GCM : camellia-192-gcm
1443 camellia 46 : CAMELLIA-256-GCM : camellia-256-gcm
1495 aria 34 : ARIA-128-GCM : aria-128-gcm
1496 aria 35 : ARIA-192-GCM : aria-192-gcm
1497 aria 36 : ARIA-256-GCM : aria-256-gcm
/third_party/curl/docs/
DCIPHERS.md341 `aes128-gcm-sha256`
342 `aes256-gcm-sha384`

12