Searched refs:_tls_hmac_algs (Results 1 – 3 of 3) sorted by relevance
/external/scapy/scapy/layers/tls/crypto/ |
D | prf.py | 15 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"])
|
D | h_mac.py | 22 _tls_hmac_algs = {} variable 43 _tls_hmac_algs[dct["name"]] = the_class
|
D | suites.py | 16 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")
|