You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current use of ssl.wrap_socket in the client/server does not support passphrase-protected key files, which are commonly used for increased security. Update PyKMIP ssl use to support passphrase-protected key files.
This will likely involve migrating away from ssl.wrap_socket (which is technically deprecated) toward the newer SSLContext.wrap_socket implementation. See the following for more detail: