amazon-s3-encryption-client-java
amazon-s3-encryption-client-java copied to clipboard
The Amazon S3 Encryption Client is a client-side encryption library that enables you to encrypt an object locally to ensure its security before passing it to Amazon Simple Storage Service (Amazon S3).
Bumps commons-logging:commons-logging from 1.2 to 1.3.1. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4. Release notes Sourced from actions/setup-java's releases. v4.0.0 What's Changed In the scope of this release, the version of the Node.js runtime was updated to...
Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 2 to 4. Release notes Sourced from aws-actions/configure-aws-credentials's releases. v4 This tag tracks the latest v4.x.x release v3.0.2 See the changelog for details about the changes included...
*Issue #, if available:* *Description of changes:* - refactor to re-use existing S3Client to fetch instruction file By submitting this pull request, I confirm that my contribution is made under...
### Problem: I created a 64KB (65536 bytes) with S3Encryption client, and then did ``` S3Client s3Client = S3Client.builder().region(Region.EU_WEST_1).build(); S3Client s3ECClient = S3EncryptionClient.builder() .kmsKeyId("xxx") .wrappedClient(s3Client) .wrappedAsyncClient(S3AsyncClient.builder().region(Region.EU_WEST_1).build()) .enableLegacyUnauthenticatedModes(true) .build(); ResponseInputStream inputStream...
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @takost in actions/checkout#1436 Support fetching without the --progress option...
The code where I create S3EncryptionClient and call it (3.1.1 library version) ``` private S3EncryptionClient getEncryptionClient(String regionName, KeyPair keyPair) { return S3EncryptionClient.builder() .rsaKeyPair(keyPair) .enableDelayedAuthenticationMode(true) .enableLegacyUnauthenticatedModes(true) .enableLegacyWrappingAlgorithms(true) .wrappedClient(getClient(regionName)) .wrappedAsyncClient(getAsyncClient(regionName)) .build(); }...
Bumps [software.amazon.awssdk.crt:aws-crt](https://github.com/awslabs/aws-crt-java) from 0.21.9 to 0.29.19. Release notes Sourced from software.amazon.awssdk.crt:aws-crt's releases. v0.29.19 What's Changed Update DeviceFarm tests to not use legacy host by @bretambrose in awslabs/aws-crt-java#781 update aws-lc by...
Bumps software.amazon.awssdk:kms from 2.20.38 to 2.25.57. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps commons-logging:commons-logging from 1.2 to 1.3.2. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...