Initialize secure renegotiation extension.
(self)
| 18 | """Secure Renegotiation extension RFC 5746.""" |
| 19 | |
| 20 | def __init__(self): |
| 21 | """Initialize secure renegotiation extension.""" |
| 22 | super(RenegotiationExtension, self).__init__( |
| 23 | extType=ExtensionType.renegotiation_info) |
| 24 | self.renegotiated_connection = None |
| 25 | |
| 26 | def create(self, data): |
| 27 | """Set the value of the Finished message.""" |