Home
last modified time | relevance | path

Searched refs:_tls_hmac_algs (Results 1 – 3 of 3) sorted by relevance

/external/scapy/scapy/layers/tls/crypto/
Dprf.py15 from scapy.layers.tls.crypto.h_mac import _tls_hmac_algs
54 return _tls_P_hash(secret, seed, req_len, _tls_hmac_algs["HMAC-MD5"])
57 return _tls_P_hash(secret, seed, req_len, _tls_hmac_algs["HMAC-SHA"])
60 return _tls_P_hash(secret, seed, req_len, _tls_hmac_algs["HMAC-SHA256"])
63 return _tls_P_hash(secret, seed, req_len, _tls_hmac_algs["HMAC-SHA384"])
66 return _tls_P_hash(secret, seed, req_len, _tls_hmac_algs["HMAC-SHA512"])
Dh_mac.py22 _tls_hmac_algs = {} variable
43 _tls_hmac_algs[dct["name"]] = the_class
Dsuites.py16 from scapy.layers.tls.crypto.h_mac import _tls_hmac_algs
56 hmac_alg = _tls_hmac_algs.get(hmac_name)
64 hmac_alg = _tls_hmac_algs.get("HMAC-NULL")