Skip to content

Latest commit

 

History

History
91 lines (73 loc) · 4.13 KB

README.md

File metadata and controls

91 lines (73 loc) · 4.13 KB

AWS Encryption SDK Examples

This section features examples that show you how to use the AWS Encryption SDK. We demonstrate how to use the encryption and decryption APIs and how to set up some common configuration patterns.

APIs

The AWS Encryption SDK provides two high-level APIs: one-step APIs that process the entire operation in memory and streaming APIs.

You can find examples that demonstrate these APIs in the examples/src/ directory root.

Configuration

To use the library APIs, you must provide a configuration that defines how you want to protect your data keys.

Keyrings

Keyrings are the most common way for you to configure the AWS Encryption SDK. They determine how the AWS Encryption SDK protects your data. You can find these examples in examples/src/keyring.

Cryptographic Materials Managers

Keyrings define how your data keys are protected, but there is more going on here than just protecting data keys.

Cryptographic materials managers give you higher-level controls over how the AWS Encryption SDK protects your data. This can include things like enforcing the use of certain algorithm suites or encryption context settings, reusing data keys across messages, or changing how you interact with keyrings. You can find these examples in examples/src/crypto_materials_manager.

Master Key Providers

Before there were keyrings, there were master key providers. Master key providers were the original configuration structure that we provided for defining how you want to protect your data keys. Keyrings provide a simpler experience and often more powerful configuration options, but if you need to use master key providers, need help migrating from master key providers to keyrings, or simply want to see the difference between these configuration experiences, you can find these examples in examples/src/master_key_provider.

Legacy

This section includes older examples, including examples of using master keys and master key providers in Java and Python. You can use them as a reference, but we recommend looking at the newer examples but we recommend looking at the newer examples, which explain the preferred ways of using this library. You can find these examples in examples/src/legacy.

Writing Examples

If you want to contribute a new example, that's awesome! To make sure that your example is tested in our CI, please make sure that it meets the following requirements:

  1. The example MUST be a distinct module in the examples/src/ directory.
  2. The example MAY be nested arbitrarily deeply, but every intermediate directory MUST contain a __init__.py file so that CPython 2.7 will recognize it as a module.
  3. Every example MUST be CPython 2.7 compatible.
  4. Each example file MUST contain exactly one example.
  5. Each example file MUST contain a function called run that runs the example.
  6. If your run function needs any of the following inputs, the parameters MUST have the following names:
    • aws_kms_cmk (str) : A single AWS KMS CMK ARN.
      • NOTE: You can assume that automatically discovered credentials have kms:GenerateDataKey, kms:Encrypt, and kms:Decrypt permissions on this CMK.
    • aws_kms_generator_cmk (str) : A single AWS KMS CMK ARN to use as a generator key.
      • NOTE: You can assume that automatically discovered credentials have kms:GenerateDataKey, kms:Encrypt, and kms:Decrypt permissions on this CMK.
    • aws_kms_child_cmks (List[str]) : A list of AWS KMS CMK ARNs to use as child keys.
      • NOTE: You can assume that automatically discovered credentials have kms:Encrypt and kms:Decrypt permissions on these CMKs.
    • source_plaintext (bytes) : Plaintext data to encrypt.
    • source_plaintext_filename (str) : A path to a file containing plaintext to encrypt.
      • NOTE: You can assume that you have write access to the parent directory and that anything you do in that directory will be cleaned up by our test runners.
  7. Any additional parameters MUST be optional.