Home
last modified time | relevance | path

Searched refs:_tls_cipher_suites_cls (Results 1 – 4 of 4) sorted by relevance

/external/scapy/scapy/layers/tls/
Dhandshake_sslv2.py21 _tls_cipher_suites_cls,
292 cs_cls = _tls_cipher_suites_cls[cs_val]
297 if cs_val not in _tls_cipher_suites_cls:
301 cs_cls = _tls_cipher_suites_cls[cs_val]
349 if cs_val not in _tls_cipher_suites_cls:
353 cs_cls = _tls_cipher_suites_cls[cs_val]
Dhandshake.py39 _tls_cipher_suites_cls,
368 if cs_val not in _tls_cipher_suites_cls:
372 cs_cls = _tls_cipher_suites_cls[cs_val]
423 if cs_val not in _tls_cipher_suites_cls:
427 cs_cls = _tls_cipher_suites_cls[cs_val]
Dautomaton_srv.py33 from scapy.layers.tls.crypto.suites import (_tls_cipher_suites_cls,
259 if not _tls_cipher_suites_cls[c].kx_alg.anonymous:
270 if not _tls_cipher_suites_cls[c].kx_alg.no_ske:
/external/scapy/scapy/layers/tls/crypto/
Dsuites.py71 _tls_cipher_suites_cls = {} variable
124 _tls_cipher_suites_cls[cs_val] = the_class
1027 if c in _tls_cipher_suites_cls:
1028 ciph = _tls_cipher_suites_cls[c]