Searched refs:auth_decrypt (Results 1 – 5 of 5) sorted by relevance
/external/scapy/scapy/layers/tls/crypto/ |
D | cipher_aead.py | 160 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/ |
D | tools.py | 206 p.fragment = alg.auth_decrypt(A, c.fragment)
|
D | record_tls13.py | 116 return rcs.cipher.auth_decrypt(b"", s, read_seq_num)
|
D | record.py | 315 return self.tls_session.rcs.cipher.auth_decrypt(add_data, s,
|
/external/scapy/test/ |
D | tls.uts | 506 = 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)
|