
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
jks-js is a converter of Java Key Store (JKS) to PEM certificates in order to securely connect to Java based servers using node js.
jks-js is a converter of Java Keystore to PEM certificates in order to securely connect to Java based servers using node js.
npm install jks-js
...
const jks = require('jks-js');
const keystore = jks.toPem(
fs.readFileSync('keystore.jks'),
'password'
);
const { cert, key } = keystore['alias'];
after extraction you may use cert and key in your connection settings:
tls.connect('<port>', '<host>', {
key: key,
cert: cert,
});
const {
/**
* Extracts certificates from java keystore or truststore
* and decrypts private key
*
* @param keystore content of java keystore or truststore file
* @param keystorePassword password for verification and decryption
* @param pemPassword (optional) password that is used for decryption, in case it is different from keystorePassword. If not specified, keystorePassword is used
* @return {
* <alias name>: {
* cert: string // compound certificates chain
* key: string // decrypted private key
* } | {
* ca: string // trusted certificate
* }
* }
*/
toPem,
/**
* The raw function to extract certificates
* @param keystore
* @param password
* @return { <alias name>: KeyEntry | TrustedKeyEntry }
*/
parseJks,
/**
* Decrypts private key from DER to PEM
*
* @param protectedPrivateKey DER encoded private key
* @param password password for PKCS8 decryption
* @return decoded private key
*/
decrypt,
/**
* The function that parses keystore/truststore in PKCS12 format
*
* @param {Buffer} keystore
* @param {String} password
*/
parsePkcs12,
} = require('jks-js');
The implementaion is based on JavaKeystore.java logic, which is internally used for creation of java keystore, including keytool
.
It is supposed the keystore contains X.509
certificates.
But you may use the library to extract any of certificates.
The decryption constrained by alghorithms that implemented in the crypto module of Node.js.
If you find any troubles feel free to create an issue.
Copyright (c) 2020 Volodymyr Liench
1.1.4 2024-09-30
FAQs
jks-js is a converter of Java Key Store (JKS) to PEM certificates in order to securely connect to Java based servers using node js.
The npm package jks-js receives a total of 252,745 weekly downloads. As such, jks-js popularity was classified as popular.
We found that jks-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.