Searched refs:AESCCM (Results 1 – 7 of 7) sorted by relevance
/external/python/cryptography/tests/hazmat/primitives/ |
D | test_aead.py | 15 AESCCM, AESGCM, ChaCha20Poly1305 187 _aead_supported(AESCCM), 193 AESCCM(AESCCM.generate_key(128)) 197 not _aead_supported(AESCCM), 203 key = AESCCM.generate_key(128) 204 aesccm = AESCCM(key) 214 key = AESCCM.generate_key(128) 215 aesccm = AESCCM(key) 222 key = AESCCM.generate_key(128) 224 AESCCM(key, tag_length=7) [all …]
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | aead.py | 16 AESCCM, AESGCM, ChaCha20Poly1305 20 elif isinstance(cipher, AESCCM): 100 from cryptography.hazmat.primitives.ciphers.aead import AESCCM 107 if isinstance(cipher, AESCCM): 127 from cryptography.hazmat.primitives.ciphers.aead import AESCCM 138 if isinstance(cipher, AESCCM): 144 if isinstance(cipher, AESCCM):
|
/external/scapy/scapy/layers/tls/crypto/ |
D | cipher_aead.py | 29 from cryptography.hazmat.primitives.ciphers.aead import (AESCCM, 149 if isinstance(self._cipher, AESCCM): 201 if isinstance(self._cipher, AESCCM): 235 cipher_cls = AESCCM 321 isinstance(self._cipher, AESCCM)): 353 isinstance(self._cipher, AESCCM)): 405 cipher_cls = AESCCM
|
/external/python/cryptography/tests/wycheproof/ |
D | test_aes.py | 17 from cryptography.hazmat.primitives.ciphers.aead import AESCCM, AESGCM 112 not _aead_supported(AESCCM), 130 AESCCM(key, tag_length=wycheproof.testgroup["tagSize"] // 8) 133 aesccm = AESCCM(key, tag_length=wycheproof.testgroup["tagSize"] // 8)
|
/external/python/cryptography/docs/hazmat/primitives/ |
D | aead.rst | 159 .. class:: AESCCM(key, tag_length=16) 186 >>> from cryptography.hazmat.primitives.ciphers.aead import AESCCM 189 >>> key = AESCCM.generate_key(bit_length=128) 190 >>> aesccm = AESCCM(key)
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/ |
D | aead.py | 66 class AESCCM(object): class
|
/external/python/cryptography/ |
D | CHANGELOG.rst | 305 :class:`~cryptography.hazmat.primitives.ciphers.aead.AESCCM`.
|