PyKMIP
PyKMIP copied to clipboard
Add support for certificate key file passphrases
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: