amazon-s3-encryption-client-java icon indicating copy to clipboard operation
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).

Results 41 amazon-s3-encryption-client-java issues
Sort by recently updated
recently updated
newest added

### Problem: My code is roughly ``` val s3ClientObject = S3Client .builder() .credentialsProvider( StaticCredentialsProvider.create( AwsBasicCredentials.create( spec.accessKey.get, getSecretKey(metadataEncryptionUtils) ) ) ) .region(REGION.US_EAST_1).build() val s3AsyncClientObject = S3AsyncClient .builder() .credentialsProvider( StaticCredentialsProvider.create( AwsBasicCredentials.create( spec.accessKey.get,...

Bumps software.amazon.awssdk:kms from 2.20.38 to 2.25.50. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=software.amazon.awssdk:kms&package-manager=maven&previous-version=2.20.38&new-version=2.25.50)](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...

dependencies
java

Bumps [com.github.spotbugs:spotbugs-annotations](https://github.com/spotbugs/spotbugs) from 4.7.3 to 4.8.5. Release notes Sourced from com.github.spotbugs:spotbugs-annotations's releases. SpotBugs 4.8.5 CHANGELOG Fixed Fix FP SING_SINGLETON_GETTER_NOT_SYNCHRONIZED with eager instances (spotbugs/spotbugs#2932) Fix FPs when looking for multiple initialization...

dependencies
java

Bumps [org.bouncycastle:bcprov-jdk18on](https://github.com/bcgit/bc-java) from 1.74 to 1.78.1. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.bouncycastle:bcprov-jdk18on&package-manager=maven&previous-version=1.74&new-version=1.78.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...

dependencies
java

Bumps [org.bouncycastle:bcprov-jdk18on](https://github.com/bcgit/bc-java) from 1.74 to 1.78. Changelog Sourced from org.bouncycastle:bcprov-jdk18on's changelog. 2.1.1 Version Date:      2024, TBD. 2.2.1 Version Date:      2024, 18th April. 2.3.1 Version Release: 1.78 Date:      2024, 7th April....

dependencies
java

Bumps [software.amazon.awssdk.crt:aws-crt](https://github.com/awslabs/aws-crt-java) from 0.21.9 to 0.29.18. Release notes Sourced from software.amazon.awssdk.crt:aws-crt's releases. Fix JNI call on proxy auth enum What's Changed Mismatched JNI call on proxy auth enum by @​bretambrose...

dependencies
java

### Problem: I am trying to migrate from the java sdk v1 to the sdk v2. I am trying to use the `EncryptionClient` with range query, but I cannot make...

Bumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.8 to 0.8.12. Release notes Sourced from org.jacoco:jacoco-maven-plugin's releases. 0.8.12 New Features JaCoCo now officially supports Java 22 (GitHub #1596). Experimental support for Java 23 class files...

dependencies
java

### Problem: Multiple customers have run into issues where they have configured an AWS SDK client (usually the wrapped S3 Client), but then are unable to call KMS correctly because...

enhancement

### Problem: Range queries without a start or end byte range fail due to https://github.com/aws/amazon-s3-encryption-client-java/blob/main/src/main/java/software/amazon/encryption/s3/legacy/internal/RangedGetUtils.java#L21. ### Solution: Adjust the regex to allow for start or end byte range to not...