MCPcopy Create free account
hub / github.com/mozilla/cipherscan / __init__

Method __init__

cscan/config.py:20–32  ·  view source on GitHub ↗

Initialize object with default settings.

(self)

Source from the content-addressed store, hash-verified

18 """Base object for all Client Hello configurations."""
19
20 def __init__(self):
21 """Initialize object with default settings."""
22 self._name = None
23 self.modifications = []
24 self.callbacks = []
25 self.version = (3, 3)
26 self.record_version = (3, 0)
27 self.ciphers = []
28 self.extensions = None
29 self.random = None
30 self.session_id = bytearray(0)
31 self.compression_methods = [0]
32 self.ssl2 = False
33
34 @property
35 def name(self):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected