Home
last modified time | relevance | path

Searched refs:AESCCM (Results 1 – 7 of 7) sorted by relevance

/external/python/cryptography/tests/hazmat/primitives/
Dtest_aead.py15 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/
Daead.py16 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/
Dcipher_aead.py29 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/
Dtest_aes.py17 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/
Daead.rst159 .. 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/
Daead.py66 class AESCCM(object): class
/external/python/cryptography/
DCHANGELOG.rst305 :class:`~cryptography.hazmat.primitives.ciphers.aead.AESCCM`.