Python Equivalent of Java's 'Keystore'?

时间:2015-11-18 21:02:47

标签: python cryptography

Is there a standard mechanism for storing/retrieving cryptographic keys and certificates in the Python platform: equivalent to the 'keystore(/truststore)' in the Java Platform ?

1 个答案:

答案 0 :(得分:1)

由于Python标准库不包含任何手动加密(仅散列)。没有真正的标准机制。

如果您正在使用ssl module,则可以在可以加载到SSLContext中的文本中存储客户端证书(用于身份验证)和CA证书(用于链验证)。