Home
last modified time | relevance | path

Searched refs:auth_decrypt (Results 1 – 5 of 5) sorted by relevance

/external/scapy/scapy/layers/tls/crypto/
Dcipher_aead.py160 def auth_decrypt(self, A, C, seq_num=None, add_length=True): member in _AEADCipher
328 def auth_decrypt(self, A, C, seq_num): member in _AEADCipher_TLS13
/external/scapy/scapy/layers/tls/
Dtools.py206 p.fragment = alg.auth_decrypt(A, c.fragment)
Drecord_tls13.py116 return rcs.cipher.auth_decrypt(b"", s, read_seq_num)
Drecord.py315 return self.tls_session.rcs.cipher.auth_decrypt(add_data, s,
/external/scapy/test/
Dtls.uts506 = Crypto - AES cipher in GCM mode, auth_encrypt() and auth_decrypt() checks
576 tmp1 = c.auth_decrypt(t.a, ne + t.ct, add_length=False) == tup
584 tmp1 = c.auth_decrypt(t.a, ne + t.ct, add_length=False) == tup
642 tmp1 = c.auth_decrypt(t.a, ne + t.ct, add_length=False) == tup
716 tmp1 = c.auth_decrypt(t.a, t.ct + t.tag, b"\0"*8) == (t.p, t.tag)