PyKMIP icon indicating copy to clipboard operation
PyKMIP copied to clipboard

Add support for certificate key file passphrases

Open PeterHamilton opened this issue 6 years ago • 0 comments

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:

PeterHamilton avatar Sep 26 '19 15:09 PeterHamilton