Skip to content

Commit

Permalink
Added changelog entry for KMS client-side encryption.
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorrowe committed Jul 27, 2015
1 parent 839bee3 commit db967a5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Unreleased Changes
------------------

* Feature - KMS Client-Side-Encryption - Added support to `Aws::S3::Encryption::Client` for using AWS Key Management Service (KMS) to manage master encryption keys.

```ruby
s3_enc = Aws::S3::Encryption::Client.new(kms_key_id: 'kms-key-id')
s3_enc.put_object(bucket:'aws-sdk', key:'secret', body:'data')
s3_enc.get_object(bucket:'aws-sdk', key:'secret').body.read
#=> 'data'
```

This implementation is compatible with objects written by the AWS SDK for Java
encryption client.

2.1.8 (2015-07-23)
------------------

Expand Down

0 comments on commit db967a5

Please sign in to comment.