What is @aws-crypto/client-node?
@aws-crypto/client-node is an AWS SDK for JavaScript library that provides client-side encryption and decryption for data. It allows developers to securely encrypt and decrypt data using AWS Key Management Service (KMS) and other cryptographic materials.
What are @aws-crypto/client-node's main functionalities?
Encrypt Data
This feature allows you to encrypt data using a KMS keyring. The code sample demonstrates how to encrypt a simple string using a specified KMS key.
const { encrypt } = require('@aws-crypto/client-node');
const { KmsKeyringNode } = require('@aws-crypto/kms-keyring-node');
const keyring = new KmsKeyringNode({
generatorKeyId: 'arn:aws:kms:us-west-2:123456789012:key/abcd1234-a123-456a-a12b-a123b4cd56ef',
});
const context = {
stage: 'demo',
purpose: 'simple demonstration',
origin: 'us-west-2',
};
const plaintext = 'Hello, World!';
(async () => {
const { result } = await encrypt(keyring, plaintext, { encryptionContext: context });
console.log(result); // Encrypted data
})();
Decrypt Data
This feature allows you to decrypt data that was previously encrypted using a KMS keyring. The code sample demonstrates how to decrypt the encrypted string from the previous example.
const { decrypt } = require('@aws-crypto/client-node');
const { KmsKeyringNode } = require('@aws-crypto/kms-keyring-node');
const keyring = new KmsKeyringNode({
generatorKeyId: 'arn:aws:kms:us-west-2:123456789012:key/abcd1234-a123-456a-a12b-a123b4cd56ef',
});
const encryptedData = '...'; // Encrypted data from the previous example
(async () => {
const { plaintext, messageHeader } = await decrypt(keyring, encryptedData);
console.log(plaintext.toString()); // Decrypted data
})();
Generate Data Key
This feature allows you to generate a data key that can be used for client-side encryption. The code sample demonstrates how to generate a 32-byte data key using a specified KMS key.
const { generateDataKey } = require('@aws-crypto/client-node');
const { KmsKeyringNode } = require('@aws-crypto/kms-keyring-node');
const keyring = new KmsKeyringNode({
generatorKeyId: 'arn:aws:kms:us-west-2:123456789012:key/abcd1234-a123-456a-a12b-a123b4cd56ef',
});
(async () => {
const { plaintextKey, ciphertextKey } = await generateDataKey(keyring, { numberOfBytes: 32 });
console.log(plaintextKey); // Plaintext data key
console.log(ciphertextKey); // Encrypted data key
})();
Other packages similar to @aws-crypto/client-node
aws-sdk
The aws-sdk package is the official AWS SDK for JavaScript, which provides a wide range of services including KMS for encryption and decryption. While it offers broader functionality, it does not provide the same level of client-side encryption and decryption capabilities as @aws-crypto/client-node.
node-forge
node-forge is a JavaScript library that provides a set of cryptographic tools, including encryption, decryption, and key generation. It is more general-purpose compared to @aws-crypto/client-node and does not integrate directly with AWS KMS.
crypto-js
crypto-js is a popular library for cryptographic operations in JavaScript. It provides a variety of algorithms for encryption and hashing but does not offer direct integration with AWS services like @aws-crypto/client-node.
AWS Encryption SDK for JavaScript client for Node.js
@aws-crypto/client-node
The client-node module includes all of the modules you need to use the AWS Encryption SDK for
JavaScript with Node.js.
- decrypt-node
- encrypt-node
- kms-keyring-node
- material-management-node
- caching-materials-manager-node
- raw-aes-keyring-node
- raw-rsa-keyring-node
For code examples that show you how to these modules to create keyrings and encrypt and decrypt data, install the example-node module.
install
To install this module, use the npm package manager. For help with installation, see
https://www.npmjs.com/get-npm.
npm install @aws-crypto/client-node
use
For detailed code examples
that show you how to these modules
to create keyrings
and encrypt and decrypt data,
install the example-node module.
const generatorKeyId = 'arn:aws:kms:us-west-2:658956600833:alias/EncryptDecrypt'
const keyIds = ['arn:aws:kms:us-west-2:658956600833:key/b3537ef1-d8dc-4780-9f5a-55776cbb2f7f']
const keyring = new KmsKeyringNode({ generatorKeyId, keyIds })
const context = {
stage: 'demo',
purpose: 'simple demonstration app',
origin: 'us-west-2'
}
const cleartext = 'asdf'
const { result } = await encrypt(keyring, cleartext, { encryptionContext: context })
const { plaintext, messageHeader } = await decrypt(keyring, result)
const { encryptionContext } = messageHeader
Object
.entries(context)
.forEach(([key, value]) => {
if (encryptionContext[key] !== value) throw new Error('Encryption Context does not match expected values')
})
test
npm test
Compatibility Considerations
RSA Options
Node.js crypto does not support all RSA key wrapping options supported by other other implementation of the AWS Encryption SDK
The supported configurations are:
- OAEP with SHA1 and MGF1 with SHA1
- PKCS1v15
license
This SDK is distributed under the
Apache License, Version 2.0,
see LICENSE.txt and NOTICE.txt for more information.