Searched refs:Cipher_RC2_CBC (Results 1 – 2 of 2) sorted by relevance
205 class Cipher_RC2_CBC(_BlockCipher): class211 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
422 from scapy.layers.tls.crypto.cipher_block import Cipher_RC2_CBC425 tmp = (Cipher_RC2_CBC(t.k, t.iv).encrypt(t.p) == t.c and426 Cipher_RC2_CBC(t.k, t.iv).decrypt(t.c) == t.p)