How to read key from p12 file ?
There is simple solution with jceks:
def get_jceks_keys(file, passphrase):
ks = jks.KeyStore.load(file, passphrase)
return ks.secret_keys
but to read data in p12 file ?
I know there was:
crypto.load_pkcs12
but this solution is deprecated