🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

pyjks

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyjks

Pure-Python Java Keystore (JKS) library

20.0.0
PyPI
Maintainers
2

PyJKS enables Python projects to load and manipulate Java KeyStore (JKS) data without a JVM dependency. PyJKS supports JKS, JCEKS, BKS and UBER (BouncyCastle) keystores. Simply::

pip install pyjks

Or::

easy_install pyjks

Then::

import jks

keystore = jks.KeyStore.load('keystore.jks', 'passphrase')

print(keystore.private_keys) print(keystore.certs) print(keystore.secret_keys)

And that's barely scratching the surface. Check out the usage examples on GitHub <https://github.com/kurtbrose/pyjks#usage-examples>_ for more!

Keywords

JKS JCEKS java keystore security ssl

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts