Socket
Socket
Sign inDemoInstall

pyjks

Package Overview
Dependencies
0
Maintainers
2
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pyjks

Pure-Python Java Keystore (JKS) library


Maintainers
2

Readme

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

FAQs


Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc