Home
last modified time | relevance | path

Searched refs:Cipher_DES_CBC (Results 1 – 2 of 2) sorted by relevance

/external/scapy/scapy/layers/tls/crypto/
Dcipher_block.py133 class Cipher_DES_CBC(_BlockCipher): class
139 class Cipher_DES40_CBC(Cipher_DES_CBC):
175 "DES_64_CBC": Cipher_DES_CBC,
/external/scapy/test/
Dtls.uts444 from scapy.layers.tls.crypto.cipher_block import Cipher_DES_CBC
447 tmp = (Cipher_DES_CBC(t.k, t.iv).encrypt(t.p) == t.c and
448 Cipher_DES_CBC(t.k, t.iv).decrypt(t.c) == t.p)