File tree Expand file tree Collapse file tree 4 files changed +28
-1
lines changed Expand file tree Collapse file tree 4 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Common Makefile targets are:
66
66
### Development Requirements
67
67
68
68
* Dafny 4.1.0: https://github.com/dafny-lang/dafny
69
- * A
69
+ * A Java 8 or newer development environment
70
70
71
71
#### (Optional) Dafny Report Generator Requirements
72
72
Original file line number Diff line number Diff line change 1
1
# AWS Database Encryption SDK for DynamoDb Java Examples
2
2
3
3
This project contains examples for using the AWS Database Encryption SDK for DynamoDb in Java.
4
+
5
+ ```
6
+ ├── ..
7
+ ├── src
8
+ │ ├── main/java/software/amazon/cryptography/examples: Examples source
9
+ │ │ ├── BasicPutGetExample: Example using AWS DB ESDK to Put and Get an encrypted item from DynamoDB
10
+ │ │ ├── CreateKeyStoreTableExample: Example creating a Keystore DynamoDB table for use with a hierarchical keyring
11
+ │ │ ├── CreateKeyStoreKeyExample: Example creating a branch key in a Keystore DynamoDB table
12
+ │ │ ├── clientsupplier: Examples using a custom KMS ClientSupplier
13
+ │ │ ├── enhanced: Examples using the DynamoDbEnhancedClient
14
+ │ │ ├── itemencryptor: Examples using the DynamoDbItemEncryptor
15
+ │ │ ├── keyring: Examples creating and using different keyrings
16
+ │ │ └── searchableencryption: Examples demonstrating searchable encryption configuration and usage
17
+ └── └── test: Our tests that run these examples
18
+ ```
Original file line number Diff line number Diff line change
1
+ ## Examples (Java)
2
+
3
+ This project contains examples demonstrating how to use the AWS Database Encryption SDK.
4
+
5
+ ```
6
+ ├── ..
7
+ ├── DynamoDbEncryption: Examples for using features in the AWS Database Encryption SDK
8
+ └── Migration: Examples for migrating from a plaintext table or the DynamoDB Encryption Client 2.0 to AWS DB ESDK
9
+ ```
Original file line number Diff line number Diff line change
1
+ # AWS Database Encryption SDK for DynamoDb Java Test Vectors
2
+
3
+ This project contains code encrypts and decrypts a suite of DynamoDB items to validate the Database Encryption SDK's cross-version compatibility.
You can’t perform that action at this time.
0 commit comments