Home
last modified time | relevance | path

Searched refs:GCM (Results 1 – 25 of 80) sorted by relevance

1234

/external/curl/docs/
DCIPHERS.md107 `AES128-GCM-SHA256`
108 `AES256-GCM-SHA384`
111 `DH-RSA-AES128-GCM-SHA256`
112 `DH-RSA-AES256-GCM-SHA384`
115 `DH-DSS-AES128-GCM-SHA256`
116 `DH-DSS-AES256-GCM-SHA384`
119 `DHE-RSA-AES128-GCM-SHA256`
120 `DHE-RSA-AES256-GCM-SHA384`
123 `DHE-DSS-AES128-GCM-SHA256`
124 `DHE-DSS-AES256-GCM-SHA384`
[all …]
/external/python/cryptography/tests/hazmat/primitives/
Dtest_aes.py237 algorithms.AES(b"\x00" * 16), modes.GCM(b"\x00" * 12)
255 modes.GCM,
266 modes.GCM(iv),
283 modes.GCM(iv),
294 modes.GCM(b"\x01" * 16),
297 encryptor._bytes_processed = modes.GCM._MAX_ENCRYPTED_BYTES - 16
300 encryptor._bytes_processed == modes.GCM._MAX_ENCRYPTED_BYTES
308 modes.GCM(b"\x01" * 16),
311 encryptor._aad_bytes_processed = modes.GCM._MAX_AAD_BYTES - 16
313 assert encryptor._aad_bytes_processed == modes.GCM._MAX_AAD_BYTES
[all …]
Dtest_block.py136 algorithms.AES(b"\x00" * 16), modes.GCM(b"\x00" * 12)
144 modes.GCM,
148 modes.GCM,
196 modes.GCM(b"")
222 modes.GCM([1] * 16)
226 modes.GCM(b"\x00" * 16, [1] * 16)
Dtest_ciphers.py226 AES(b"\x00" * 16), modes.GCM(b"0" * 12)
235 c = ciphers.Cipher(AES(key), modes.GCM(iv), backend)
242 c = ciphers.Cipher(AES(key), modes.GCM(iv, encryptor.tag), backend)
251 AES(b"\x00" * 16), modes.GCM(b"0" * 12)
259 AES(key), modes.GCM(iv), backend
264 AES(key), modes.GCM(iv, tag=encryptor.tag), backend
301 AES(b"\x00" * 16), modes.GCM(b"\x00" * 12)
307 c = ciphers.Cipher(AES(key), modes.GCM(b"\x00" * 12), backend)
/external/boringssl/src/crypto/cipher_extra/test/
Dcipher_tests.txt278 # AES GCM test vectors from http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/…
279 Cipher = AES-128-GCM
287 Cipher = AES-128-GCM
295 Cipher = AES-128-GCM
303 Cipher = AES-128-GCM
311 Cipher = AES-128-GCM
319 Cipher = AES-128-GCM
327 Cipher = AES-128-GCM
335 Cipher = AES-256-GCM
343 Cipher = AES-256-GCM
[all …]
Daes_256_gcm_randnonce_tests.txt1 # These tests are versions of the tests from the corresponding AES-GCM test
Daes_128_gcm_randnonce_tests.txt1 # These tests are versions of the tests from the corresponding AES-GCM test
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLAeadCipherAES.java117 public static class GCM extends OpenSSLAeadCipherAES { class in OpenSSLAeadCipherAES
119 public GCM() { in GCM() method in OpenSSLAeadCipherAES.GCM
120 super(Mode.GCM); in GCM()
125 if (mode != Mode.GCM) { in checkSupportedMode()
144 public static class AES_128 extends GCM {
159 public static class AES_256 extends GCM {
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLAeadCipherAES.java110 public static class GCM extends OpenSSLAeadCipherAES { class in OpenSSLAeadCipherAES
112 public GCM() { in GCM() method in OpenSSLAeadCipherAES.GCM
113 super(Mode.GCM); in GCM()
118 if (mode != Mode.GCM) { in checkSupportedMode()
134 public static class AES_128 extends GCM {
146 public static class AES_256 extends GCM {
/external/conscrypt/
DCAPABILITIES.md92 * `AES/GCM-SIV/NoPadding`
96 * `AES/GCM/NoPadding`
98 AES/GCM with 128 or 256-bit keys.
104 * `AES_128/GCM/NoPadding`
105 * `AES_128/GCM-SIV/NoPadding`
110 * `AES_256/GCM/NoPadding`
111 * `AES_256/GCM-SIV/NoPadding`
151 * `GCM`
/external/libsrtp2/crypto/test/
Dcipher_driver.c54 #ifdef GCM
121 #ifdef GCM
190 #ifdef GCM in main()
211 #ifdef GCM in main()
278 #ifdef GCM in main()
Dstat_driver.c74 #ifdef GCM in main()
177 #ifdef GCM in main()
/external/python/cryptography/tests/wycheproof/
Dtest_aes.py59 enc = Cipher(algorithms.AES(key), modes.GCM(iv), backend).encryptor()
67 modes.GCM(iv, tag, min_tag_length=len(tag)),
75 Cipher(algorithms.AES(key), modes.GCM(iv), backend)
79 modes.GCM(iv, tag, min_tag_length=len(tag)),
/external/libsrtp2/
DCHANGES73 PR #259 - Sequence number incorrectly masked for AES GCM IV
74 The initialization vector for AES GCM encryption was incorrectly formed on
77 2.0) of libSRTP when using the AES GCM cipher for RTCP.
79 PR #287 - Fix OOB read in key generation for encrypted headers with GCM ciphers
80 Adds padding of GCM salt to the corresponding ICM length used for header
83 when using the header encryption extension with the AES GCM cipher.
193 PR #258 - Add AES-GCM to DTLS-SRTP Protection Profiles
Dconfig_in_cmake.h22 #cmakedefine GCM 1
Dconfig_in.h22 #undef GCM
Dconfigure.ac260 AC_DEFINE([GCM], [1], [Define this to use AES-GCM.]) definition
346 AC_DEFINE([GCM], [1], [Define this to use AES-GCM.]) definition
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dciphers.py84 if isinstance(mode, modes.GCM):
151 if isinstance(self._mode, modes.GCM):
169 if not errors and isinstance(self._mode, modes.GCM):
183 if (isinstance(self._mode, modes.GCM) and
/external/libsrtp2/test/
Dsrtp_driver.c64 #ifdef GCM
70 #ifdef GCM
82 #ifdef GCM
425 #ifdef GCM in main()
445 #ifdef GCM in main()
481 #ifdef GCM in main()
1780 #ifdef GCM
2071 #ifdef GCM
2432 #ifdef GCM
2791 #ifdef GCM in srtp_test_setup_protect_trailer_streams()
[all …]
/external/libsrtp2/crypto/include/
Dcipher_types.h50 #ifdef GCM
/external/python/cryptography/docs/hazmat/primitives/
Dsymmetric-encryption.rst360 .. class:: GCM(initialization_vector, tag=None, min_tag_length=16)
374 has been called. GCM provides **no** guarantees of ciphertext integrity
377 GCM (Galois Counter Mode) is a mode of operation for block ciphers. An
425 ``GCM`` mode looks like:
440 # Construct an AES-GCM Cipher object with the given key and a
444 modes.GCM(iv),
453 # GCM does not require padding.
460 # GCM tag used for authenticating the message.
463 modes.GCM(iv, tag),
632 :class:`~cryptography.hazmat.primitives.ciphers.modes.GCM`) the result will
[all …]
/external/scapy/scapy/contrib/
Dmacsec.py146 modes.GCM(iv),
172 modes.GCM(iv, icv),
/external/perfetto/test/trace_processor/chrome/
Dmemory_snapshot_node_args.out19 63,"name.value","string","[NULL]","/home/toki/.config/chromium/Default/GCM Store/Encryption"
/external/llvm-project/clang/include/clang/CodeGen/
DCodeGenABITypes.h138 llvm::Function *getNonTrivialCStructDefaultConstructor(CodeGenModule &GCM,
/external/libsrtp2/srtp/
Dekt.c154 #ifndef GCM in aes_decrypt_with_raw_key()

1234