jstink
Version:
A simple, easy-to-use Javascript crytopgraphy library.
15 lines (10 loc) • 323 B
JavaScript
const { KMSClient, DecryptCommand } = require("@aws-sdk/client-kms");
const client = new KMSClient();
async function decrypt(data) {
const command = new DecryptCommand({
CiphertextBlob: data
});
const { Plaintext } = await client.send(command);
return Plaintext;
}
module.exports = { decrypt };