|
__init__(self,
key,
*args,
**kwargs)
Initialize a TDES cipher object |
|
|
|
decrypt(self,
ciphertext)
Decrypt data with the key and the parameters set at initialization. |
|
|
|
|
|
digest(self)
Compute the binary MAC tag in an AEAD mode. |
|
|
|
encrypt(self,
plaintext)
Encrypt data with the key and the parameters set at initialization. |
|
|
|
|
|
hexdigest(self)
Compute the printable MAC tag in an AEAD mode. |
|
|
|
hexverify(self,
hex_mac_tag)
Validate the printable MAC tag in an AEAD mode. |
|
|
|
update(self,
assoc_data)
Protect associated data |
|
|
|
verify(self,
mac_tag)
Validate the binary MAC tag in an AEAD mode. |
|
|