Browse Source

Removed ignored SSL verify flags.

pyserial_fix
Scott Petersen 11 years ago
parent
commit
b420268d21
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      pyad2usb/devices.py

+ 1
- 1
pyad2usb/devices.py View File

@@ -655,7 +655,7 @@ class SocketDevice(Device):
ctx.use_privatekey_file(self.ssl_key)
ctx.use_certificate_file(self.ssl_certificate)
ctx.load_verify_locations(self.ssl_ca, None)
ctx.set_verify(SSL.VERIFY_PEER | SSL.VERIFY_FAIL_IF_NO_PEER_CERT | SSL.VERIFY_CLIENT_ONCE, self._verify_ssl_callback)
ctx.set_verify(SSL.VERIFY_PEER, self._verify_ssl_callback)

self._device = SSL.Connection(ctx, self._device)



Loading…
Cancel
Save