ssl.SSLError.reason
  • References/Python/Python/Networking

reason A string mnemonic designating the reason this error occurred, for example CERTIFICATE_VERIFY_FAILED. The

2025-01-10 15:47:30
ssl.OP_NO_TLSv1
  • References/Python/Python/Networking

ssl.OP_NO_TLSv1 Prevents a TLSv1 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23

2025-01-10 15:47:30
ssl.SSLContext.set_ciphers()
  • References/Python/Python/Networking

SSLContext.set_ciphers(ciphers) Set the available ciphers for sockets created with this context. It should be a string in the

2025-01-10 15:47:30
mmap.mmap.rfind()
  • References/Python/Python/Networking

rfind(sub[, start[, end]]) Returns the highest index in the object where the subsequence sub is found, such that sub

2025-01-10 15:47:30
socket.socket.sendfile()
  • References/Python/Python/Networking

socket.sendfile(file, offset=0, count=None) Send a file until EOF is reached by using high-performance

2025-01-10 15:47:30
socket.socket.connect_ex()
  • References/Python/Python/Networking

socket.connect_ex(address) Like connect(address), but return an error indicator instead of raising an exception

2025-01-10 15:47:30
ssl.PROTOCOL_SSLv3
  • References/Python/Python/Networking

ssl.PROTOCOL_SSLv3 Selects SSL version 3 as the channel encryption protocol. This protocol is

2025-01-10 15:47:30
ssl.SSLContext.verify_flags
  • References/Python/Python/Networking

SSLContext.verify_flags The flags for certificate verification operations. You can set flags like VERIFY_CRL_CHECK_LEAF

2025-01-10 15:47:30
socket.SocketType
  • References/Python/Python/Networking

socket.SocketType This is a Python type object that represents the socket object type. It is the same as type(socket(

2025-01-10 15:47:30
ssl.SSLContext.verify_mode
  • References/Python/Python/Networking

SSLContext.verify_mode Whether to try to verify other peers’ certificates and how to behave if verification fails. This attribute

2025-01-10 15:47:30