Home
last modified time | relevance | path

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

/external/scapy/scapy/layers/tls/crypto/
Dcipher_block.py205 class Cipher_RC2_CBC(_BlockCipher): class
211 class Cipher_RC2_CBC_40(Cipher_RC2_CBC):
215 backend.register_cipher_adapter(Cipher_RC2_CBC.pc_cls,
216 Cipher_RC2_CBC.pc_cls_mode,
219 _sslv2_block_cipher_algs["RC2_128_CBC"] = Cipher_RC2_CBC
/external/scapy/test/
Dtls.uts422 from scapy.layers.tls.crypto.cipher_block import Cipher_RC2_CBC
425 tmp = (Cipher_RC2_CBC(t.k, t.iv).encrypt(t.p) == t.c and
426 Cipher_RC2_CBC(t.k, t.iv).decrypt(t.c) == t.p)