Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@transmute/did-wallet
Advanced tools
A simple javascript key store built for DID and JSON-LD Signatures
npm i @transmute/did-wallet --save
🚧 Under Construction.
A simple javascript based key store built for DID and JSON-LD Signatures.
Creating, locking and exporting...
const wallet = didWallet.create({
keys: [
{
type: "assymetric",
encoding: "hex",
publicKey: "1111...",
privateKey: "222...",
tags: ["Secp256k1VerificationKey2018", "did:example:123", "WebBrowser"],
notes: ""
},
{
type: "assymetric",
encoding: "hex",
publicKey: "3333...",
privateKey: "4444...",
tags: ["Secp256k1VerificationKey2018", "did:example:456", "OfflineOnly"],
notes: ""
}
]
});
wallet.lock("hard-to-guess-password");
const exported = wallet.export();
Importing, unlocking, and extracting...
const wallet = didWallet.create("l2aUGWXsaiRN_aANnXi9...");
wallet.unlock("hard-to-guess-password");
const onlyWebKeys = wallet.extractByTags(["WebBrowser"]);
let webWallet = didWallet.create({
keys: [...onlyWebKeys]
});
npm i
npm run test
FAQs
A simple javascript key store built for DID and JSON-LD Signatures
The npm package @transmute/did-wallet receives a total of 6 weekly downloads. As such, @transmute/did-wallet popularity was classified as not popular.
We found that @transmute/did-wallet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.