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
socket.socket.send()
  • References/Python/Python/Networking

socket.send(bytes[, flags]) Send data to the socket. The socket must be connected to a remote socket. The optional flags

2025-01-10 15:47:30
asyncore.dispatcher.accept()
  • References/Python/Python/Networking

accept() Accept a connection. The socket must be bound to an address and listening for connections. The return value can be

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

write(buf) Write the bytes from buf to the memory BIO. The buf argument must be an object supporting the buffer

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

ssl.DER_cert_to_PEM_cert(DER_cert_bytes) Given a certificate as a DER-encoded blob of bytes, returns a PEM-encoded string version

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

ssl.cert_time_to_seconds(cert_time) Return the time in seconds since the Epoch, given the cert_time string representing

2025-01-10 15:47:30
asyncore.dispatcher.connect()
  • References/Python/Python/Networking

connect(address) As with the normal socket object, address is a tuple with the first element the host to connect to

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

SSLSocket.get_channel_binding(cb_type="tls-unique") Get channel binding data for current connection, as a bytes object. Returns

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

SSLContext.wrap_bio(incoming, outgoing, server_side=False, server_hostname=None) Create a new SSLObject instance

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

socket.getservbyport(port[, protocolname]) Translate an Internet port number and protocol name to a service name for that service

2025-01-10 15:47:30