Hackfut Security File Manager
Current Path:
/usr/lib64/python2.6/site-packages/M2Crypto/SSL
usr
/
lib64
/
python2.6
/
site-packages
/
M2Crypto
/
SSL
/
📁
..
📄
Checker.py
(8.27 KB)
📄
Checker.pyc
(7.97 KB)
📄
Checker.pyo
(7.97 KB)
📄
Cipher.py
(1.04 KB)
📄
Cipher.pyc
(2.81 KB)
📄
Cipher.pyo
(2.81 KB)
📄
Connection.py
(11.75 KB)
📄
Connection.pyc
(18.84 KB)
📄
Connection.pyo
(18.74 KB)
📄
Context.py
(9.29 KB)
📄
Context.pyc
(13.45 KB)
📄
Context.pyo
(13.45 KB)
📄
SSLServer.py
(1.45 KB)
📄
SSLServer.pyc
(2.31 KB)
📄
SSLServer.pyo
(2.31 KB)
📄
Session.py
(1.47 KB)
📄
Session.pyc
(3.31 KB)
📄
Session.pyo
(3.27 KB)
📄
TwistedProtocolWrapper.py
(15.01 KB)
📄
TwistedProtocolWrapper.pyc
(14.03 KB)
📄
TwistedProtocolWrapper.pyo
(13.9 KB)
📄
__init__.py
(853 B)
📄
__init__.pyc
(1.48 KB)
📄
__init__.pyo
(1.48 KB)
📄
cb.py
(2.3 KB)
📄
cb.pyc
(2.58 KB)
📄
cb.pyo
(2.58 KB)
📄
ssl_dispatcher.py
(874 B)
📄
ssl_dispatcher.pyc
(1.69 KB)
📄
ssl_dispatcher.pyo
(1.69 KB)
📄
timeout.py
(660 B)
📄
timeout.pyc
(1.52 KB)
📄
timeout.pyo
(1.52 KB)
Editing: timeout.py
"""Support for SSL socket timeouts. Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved. Copyright 2008 Heikki Toivonen. All rights reserved. """ __all__ = ['DEFAULT_TIMEOUT', 'timeout', 'struct_to_timeout', 'struct_size'] import struct from M2Crypto import m2 DEFAULT_TIMEOUT = 600 class timeout: def __init__(self, sec=DEFAULT_TIMEOUT, microsec=0): self.sec = sec self.microsec = microsec def pack(self): return struct.pack('ll', self.sec, self.microsec) def struct_to_timeout(binstr): (s, ms) = struct.unpack('ll', binstr) return timeout(s, ms) def struct_size(): return struct.calcsize('ll')
Upload File
Create Folder