Skip to content

Commit 51487aa

Browse files
authored
Merge pull request #63 from lizroth/repo_move
Move repository from awslabs to aws.
2 parents 90ba324 + 5e8196a commit 51487aa

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.3.3
4+
5+
### Minor Changes
6+
* Move the `aws-encryption-sdk-java` repository from `awslabs` to `aws`.
7+
38
## 1.3.2
49

510
### Minor Changes

README.md

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

3-
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/).
3+
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://aws.github.io/aws-encryption-sdk-java/javadoc/).
44

55
For more details about the design and architecture of the SDK, see the [official documentation](https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/).
66

@@ -142,4 +142,4 @@ You can find more examples in the [examples directory][examples].
142142

143143
See the [Frequently Asked Questions](https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/faq.html) page in the official documentation.
144144

145-
[examples]: https://github.com/awslabs/aws-encryption-sdk-java/tree/master/src/examples/java/com/amazonaws/crypto/examples
145+
[examples]: https://github.com/aws/aws-encryption-sdk-java/tree/master/src/examples/java/com/amazonaws/crypto/examples

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-encryption-sdk-java</artifactId>
7-
<version>1.3.2-STAGING</version>
7+
<version>1.3.3</version>
88
<packaging>jar</packaging>
99

1010
<name>aws-encryption-sdk-java</name>
1111
<description>AWS Encryption SDK for Java</description>
12-
<url>https://github.com/awslabs/aws-encryption-sdk-java</url>
12+
<url>https://github.com/aws/aws-encryption-sdk-java</url>
1313

1414
<licenses>
1515
<license>
@@ -31,7 +31,7 @@
3131
</developers>
3232

3333
<scm>
34-
<url>https://github.com/awslabs/aws-encryption-sdk-java.git</url>
34+
<url>https://github.com/aws/aws-encryption-sdk-java.git</url>
3535
</scm>
3636

3737
<properties>

0 commit comments

Comments
 (0)