1.1.2 • Published 1 year ago

cook06 v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

AWS Encryption SDK for Javascript

The AWS Encryption SDK for Javascript provides a fully compliant, native Javascript implementation of the AWS Encryption SDK

Security issue notifications

See Support Policy for for details on the current support status of all major versions of this library.

Client Packages

PackageDescription
@aws-crypto/client-browserClient SDK for Web applications
@aws-crypto/client-nodeClient SDK for Node.js client applications

These client packages have everything you need to encrypt/decrypt. They are the primary starting point. The AWS Encryption SDK for Javascript is built from a group of modularized packages. You can also compose the functional packages you need.

Functional Packages

PackageDescription
@aws-crypto/encrypt-browserEncrypt function for Web applications
@aws-crypto/encrypt-nodeEncrypt function for Node.js client applications
@aws-crypto/decrypt-browserDecrypt function for Web applications
@aws-crypto/decrypt-nodeDecrypt function for Node.js client applications
@aws-crypto/kms-keyring-browserKms keyring for Web applications
@aws-crypto/kms-keyring-nodeKms keyring for Node.js client applications
@aws-crypto/raw-rsa-keyring-browserRaw RSA keyring for Web applications
@aws-crypto/raw-rsa-keyring-nodeRaw RSA keyring for Node.js client applications
@aws-crypto/raw-aes-keyring-browserRaw AES keyring for Web applications
@aws-crypto/raw-aes-keyring-nodeRaw AES keyring for Node.js client applications
@aws-crypto/caching-materials-manager-browserCaching Materials Manager for Web applications
@aws-crypto/caching-materials-manager-nodeCaching Materials Manager for Node.js client applications

Concepts

There are four main concepts that you need to understand to use this library:

Cryptographic Materials Managers

Cryptographic materials managers (CMMs) are resources that collect cryptographic materials and prepare them for use by the Encryption SDK core logic.

An example of a CMM is the default CMM, which is automatically generated anywhere a caller provides a keyring. The default CMM collects encrypted data keys from it's keyrings.

An example of a more advanced CMM is the caching CMM, which caches cryptographic materials provided by another CMM.

Keyrings

Keyrings use wrapping keys to generate, encrypt, and decrypt data keys. The keyring that you use determines the source of the unique data keys that protect each message, and the wrapping keys that encrypt that data key. An example of a keyring is the KmsKeyringNode.

An example of a more advanced keyring is the multi keyring. A multi keyring can be used to compose keyrings together.

Wrapping Keys

Wrapping keys are used to protect data keys. An example of a wrapping key is a KMS customer master key (CMK).

Data Keys

Data keys are the encryption keys that are used to encrypt your data. If your algorithm suite uses a key derivation function, the data key is used to generate the key that directly encrypts the data.

test

npm test

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE.txt and NOTICE.txt for more information.

Breaking changes from preview to 1.0.0

The AWS Encryption SDK for JavaScript is generally available as of October 1, 2019. There were breaking changes during the preview.

  • Passing encryption context to encrypt is now { encryptionContext?: EncryptionContext } #148
  • The return value of encrypt is now {result: Uint8Array, messageHeader: MessageHeader} #211
  • encrypt strictly enforces plaintextLength #213