Skip to content

sip49/aws-database-encryption-sdk-dynamodb-java

 
 

Repository files navigation

AWS Database Encryption SDK for DynamoDB in Java

The AWS Database Encryption SDK (DB-ESDK) for DynamoDB in Java is a client-side encryption library that allows you to perform attribute-level encryption, enabling you to encrypt specific attribute values within items before storing them in your DynamoDB table. All encryption and decryption are performed within your application. This lets you protect sensitive data in-transit and at-rest, as data cannot be exposed unless decrypted by your application.

For more details about the design and architecture of the DB-ESDK for DynamoDB, see the AWS Database Encryption SDK Developer Guide.

Security

If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our vulnerability reporting page. Please do not create a public GitHub issue.

Support Policy

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

Giving Feedback

We need your help in making this SDK great. Please participate in the community and contribute to this effort by submitting issues, participating in discussion forums and submitting pull requests through the following channels:

  • Submit issues - this is the preferred channel to interact with our team
  • Articulate your feature request or upvote existing ones
  • Ask questions on AWS re:Post under AWS Crypto Tools tag

Getting Started

Required Prerequisites

To use the DB-ESDK for DynamoDB in Java, you must have:

  • A Java 8 or newer development environment If you do not have one, go to Java SE Downloads on the Oracle website, then download and install the Java SE Development Kit (JDK). Java 8 or higher is required.

    Note: If you use the Oracle JDK, you must also download and install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files.

  • Declare a Dependency on the DB-ESDK for DynamoDB in Java and it's dependencies
    This library requires the DynamoDB client from the AWS SDK for Java V2 and the AwsCryptographicMaterialProviders library.

    The KMS and DynamoDB-Enhanced Clients from the AWS SDK For Java V2 are optional dependencies.

    • Via Gradle Kotlin
      In a Gradle Java Project, add the following to the dependencies section:
    implementation("software.amazon.cryptography:aws-database-encryption-sdk-dynamodb:3.1.0")
    implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.0.0")
    implementation(platform("software.amazon.awssdk:bom:2.19.1"))
    implementation("software.amazon.awssdk:dynamodb")
    // The following are optional:
    implementation("software.amazon.awssdk:dynamodb-enhanced")
    implementation("software.amazon.awssdk:kms")
    • Via Apache Maven
      Add the following to your project's pom.xml.
    <project>
    ...
    <dependencyManagement>
     <dependencies>
        <dependency>
          <groupId>software.amazon.awssdk</groupId>
          <artifactId>bom</artifactId>
          <version>2.19.1</version>
          <type>pom</type>
          <scope>import</scope>
        </dependency>
     </dependencies>
    </dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>software.amazon.awssdk</groupId>
        <artifactId>dynamodb</artifactId>
      </dependency>
      <dependency>
        <groupId>software.amazon.cryptography</groupId>
        <artifactId>aws-database-encryption-sdk-dynamodb</artifactId>
        <version>3.1.0</version>
      </dependency>
      <dependency>
        <groupId>software.amazon.cryptography</groupId>
        <artifactId>aws-cryptographic-material-providers</artifactId>
        <version>1.0.0</version>
      </dependency>
      <!-- The following are optional -->
      <dependency>
        <groupId>software.amazon.awssdk</groupId>
        <artifactId>dynamodb-enhanced</artifactId>
      </dependency>
      <dependency>
        <groupId>software.amazon.awssdk</groupId>
        <artifactId>kms</artifactId>
      </dependency>
    </dependencies>
    ...
    </project>

AWS Integration

You need an Amazon Web Services (AWS) account to use the DB-ESDK for DynamoDB as it's specifically designed to work with Amazon DynamoDB. Optionally, you can use AWS Key Management Service (AWS KMS) as your main keyring provider.

Amazon Corretto Crypto Provider

Many developers find that the Amazon Corretto Crypto Provider (ACCP) significantly improves the performance of the library. For help installing and using ACCP, see the amazon-corretto-crypto-provider repository.

Using the DB-ESDK for DynamoDB in Java

There are several ways to use the library.
More details are provided in the AWS Database Encryption SDK Developer Guide.
Also see the Examples.

Contributing

See CONTRIBUTING for more information.

License

This project is licensed under the Apache-2.0 License.

About

AWS Database Encryption SDK for DynamoDB in Java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 42.3%
  • C# 31.2%
  • Dafny 24.4%
  • Smithy 1.6%
  • Other 0.5%