Module refinery.units.crypto.cipher.des3
Expand source code Browse git
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from Cryptodome.Cipher import DES3
from refinery.units.crypto.cipher import StandardBlockCipherUnit
from refinery.lib.crypto import PyCryptoFactoryWrapper
class des3(StandardBlockCipherUnit, cipher=PyCryptoFactoryWrapper(DES3)):
"""
3-DES encryption and decryption.
"""
pass
Classes
class des3 (key, iv=b'', *, padding=None, mode=None, raw=False, little_endian=False, segment_size=0, mac_len=0, assoc_len=0)
-
3-DES encryption and decryption.
Expand source code Browse git
class des3(StandardBlockCipherUnit, cipher=PyCryptoFactoryWrapper(DES3)): """ 3-DES encryption and decryption. """ pass
Ancestors
Class variables
var block_size
var key_size
Inherited members