Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@adorsys/jwe-codec
Advanced tools
Codec to encrypt any javascript value into a JsonWebEncryption (JWE)
A library for encrypting/decrypting any JavaScript value as JsonWebEncryption (JWE)
npm install @adorsys/jwe-codec
const jwe = require('@adorsys/jwe-codec')
const key = {
kty: 'oct',
alg: 'A256GCM',
use: 'enc',
k: '123456789abcdefghijklmnopqrstuvwxyz12345678'
}
...
...
;(async () => {
const codec = await jwe(key)
const cipher = await codec.encrypt(42)
// => eyJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiZGlyIiwia2lkIjoialpESEVqN0ZhR3N5OHNUSUZLRWlnejB4TjFEVWlBZWp0S1ZNcEl2Z3dqOCJ9..lipFQHmBiBhsTRqE.4rLjRCOj7JZIKOpToIhOp8cJgvfNWl4Yo__VnkO7yRIYjrCLdGRl5fcR.9S_DwYmkpdLap1yyYYq44A
const answer = await codec.decrypt(cipher)
// => 42
})()
...
jwe(key).then(codec => {
codec.encrypt(42).then(cipher => {
codec.decrypt(cipher).then(answer => {
console.log(answer) // 42
})
})
})
Made with :heart: by radzom and all these wonderful contributors (emoji key):
Francis Pouatcha 🤔 | jkroepke 💻🐛 |
---|
This project follows the all-contributors specification. Contributions of any kind are welcome!
FAQs
Codec to encrypt any javascript value into a JsonWebEncryption (JWE)
The npm package @adorsys/jwe-codec receives a total of 1,891 weekly downloads. As such, @adorsys/jwe-codec popularity was classified as popular.
We found that @adorsys/jwe-codec 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.