Closed vitalyfilatov closed 4 years ago
Hi Vitaly, thanks for the question. First, pyjks is a library, not an application like keytool. So, there are a few ways to use it, including without a passphrase. I think it may be possible to do what you want with pyjks now. See this alternate constructor.
If you pass store_password=None
and try_decrypt_keys=False
, you should be able to get back a keystore with entries
populated. If that doesn't work, I'd be happy to help review a PR that gets to to a working state.
Hi Mahmoud,
Thank you very much for the tip.
pyjks doesn't allow to open a keystore without passphrase, this is correct. But what about getting a simple listing of entries in a keystore without providing passphrase?
keytool allows to get some details of a pass-protected keystore without providing passphrase, e.g.:
Could you please consider adding support of keystore listing w/o passphrase like keytool does?