Skip to content

Commit 8e1fa55

Browse files
Version bump to 0.0.1
1 parent 0dd7d77 commit 8e1fa55

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AWS Encryption SDK for Java
1+
o# AWS Encryption SDK for Java
22

33
The AWS Encryption SDK enables secure client-side encryption. It uses cryptography best practices to protect your data and the encryption keys used to protect that data. Each data object is protected with a unique data encryption key (DEK), and the DEK is protected with a key encryption key (KEK) called a *master key*. The encrypted DEK is combined with the encrypted data into a single [encrypted message](https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/message-format.html), so you don't need to keep track of the DEKs for your data. The SDK supports master keys in [AWS Key Management Service](https://aws.amazon.com/kms/) (KMS), and it also provides APIs to define and use other master key providers. The SDK provides methods for encrypting and decrypting strings, byte arrays, and byte streams. For details, see the [example code][examples] and the [Javadoc](https://awslabs.github.io/aws-encryption-sdk-java/javadoc/).
44

@@ -41,7 +41,7 @@ You can get the latest release from Maven:
4141
<dependency>
4242
<groupId>com.amazonaws</groupId>
4343
<artifactId>aws-encryption-sdk-java</artifactId>
44-
<version>0.0.1-SNAPSHOT</version>
44+
<version>0.0.1</version>
4545
</dependency>
4646
```
4747

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.amazonaws</groupId>
55
<artifactId>aws-encryption-sdk-java</artifactId>
6-
<version>0.0.1-SNAPSHOT</version>
6+
<version>0.0.1</version>
77
<packaging>jar</packaging>
88

99
<name>aws-encryption-sdk-java</name>

0 commit comments

Comments
 (0)