aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/hazmat/primitives/ciphers/aead.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-04-25 23:42:20 -0400
committerGitHub <noreply@github.com>2020-04-25 22:42:20 -0500
commit01eb304b082b4ae5769eb0b2e1184dbca010961a (patch)
treea2be5eadd79023732937261f6e58b1ddd0f74c30 /src/cryptography/hazmat/primitives/ciphers/aead.py
parentb87a238dc10f46daddd8616efd8a9b0237a858c6 (diff)
downloadcryptography-01eb304b082b4ae5769eb0b2e1184dbca010961a.tar.gz
cryptography-01eb304b082b4ae5769eb0b2e1184dbca010961a.tar.bz2
cryptography-01eb304b082b4ae5769eb0b2e1184dbca010961a.zip
Dropped support for LibreSSL 2.7, 2.8, and 2.9.0 (2.9.1+ are still supported) (#5231)
Diffstat (limited to 'src/cryptography/hazmat/primitives/ciphers/aead.py')
-rw-r--r--src/cryptography/hazmat/primitives/ciphers/aead.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cryptography/hazmat/primitives/ciphers/aead.py b/src/cryptography/hazmat/primitives/ciphers/aead.py
index a20a80f3..72cb30c3 100644
--- a/src/cryptography/hazmat/primitives/ciphers/aead.py
+++ b/src/cryptography/hazmat/primitives/ciphers/aead.py
@@ -80,12 +80,6 @@ class AESCCM(object):
self._tag_length = tag_length
- if not backend.aead_cipher_supported(self):
- raise exceptions.UnsupportedAlgorithm(
- "AESCCM is not supported by this version of OpenSSL",
- exceptions._Reasons.UNSUPPORTED_CIPHER
- )
-
@classmethod
def generate_key(cls, bit_length):
if not isinstance(bit_length, int):