Amazon Encryption SDK: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 30: Line 30:
* https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/faq.html
* https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/faq.html
</font>
</font>
=Encryption=
==Overhead Introduced by AWS Encryption SDK Message Format==


=Playground Example=
=Playground Example=


{{External|[https://github.com/ovidiuf/playground/blob/master/amazon/encryption-sdk/01-simplest-encryptionsdk/src/main/java/playground/amazon/encryptionsdk/AWSEncryptionSDKExamples.java Playground AWS Encryption SDK Examples]}}
{{External|[https://github.com/ovidiuf/playground/blob/master/amazon/encryption-sdk/01-simplest-encryptionsdk/src/main/java/playground/amazon/encryptionsdk/AWSEncryptionSDKExamples.java Playground AWS Encryption SDK Examples]}}

Revision as of 22:48, 7 December 2018

External

Internal

Overview

Dependencies

dependencies {
    implementation('org.bouncycastle:bcprov-ext-jdk15on:1.58')
    implementation('com.amazonaws:aws-encryption-sdk-java:1.3.1')
}

Clarify whether I need KMS API or not: AWS KMS API Dependencies.

Concepts

Data Key Caching

TODO:

Encryption

Overhead Introduced by AWS Encryption SDK Message Format

Playground Example

Playground AWS Encryption SDK Examples