We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/cisco/node-jose
Particularly for encryption and decryption
For example: https://runkit.com/embed/fe9qrsss9qe4
var jose = require("node-jose"); var keystore = jose.JWK.createKeyStore(); var key = await keystore.generate("oct", 256); key.alg = "A256GCMKW"; var input = jose.util.randomBytes(32); await jose.JWE.createEncrypt({ format: 'compact', contentAlg: "A256GCM" }, key). update(input). final();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/cisco/node-jose
Particularly for encryption and decryption
For example: https://runkit.com/embed/fe9qrsss9qe4
The text was updated successfully, but these errors were encountered: