tlsfuzzer/tlslite-ng

View on GitHub
tlslite/utils/openssl_aesgcm.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# Author: Ivan Nikolchev
# See the LICENSE file for legal information regarding use of this file.

"""AESGCM with CTR from m2crypto"""

from tlslite.utils.cryptomath import m2cryptoLoaded
from tlslite.utils.aesgcm import AESGCM
from tlslite.utils import openssl_aes
from tlslite.utils.rijndael import Rijndael

if m2cryptoLoaded:
    def new(key):
        return OPENSSL_AESGCM(key, "openssl", Rijndael(key, 16).encrypt)


class OPENSSL_AESGCM(AESGCM):
    def __init__(self, key, implementation, rawAesEncrypt):
        super(OPENSSL_AESGCM, self).__init__(key, implementation, rawAesEncrypt)

        self._ctr = openssl_aes.new(key, 6, bytearray(b'\x00' * 16))