Skip to content

NathanEckert/AWS_crypto_tools_reproducer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AWS_crypto_tools_reproducer

Reproduce aws/amazon-s3-encryption-client-java#300

Steps to reproduce

Add a file named AwsTestsSecrets alongside TestEndOfStreamBehavior.

This file should contain the following:

import software.amazon.awssdk.regions.Region;

public class AwsTestsSecrets {
  public static final String AWS_TEST_BUCKET = "your bucket here";

  public static final Region DEFAULT_REGION = "your region here";

  public static final String PUBLIC_KEY = "your public key here";
  public static final String PRIVATE_KEY = "your private key here";

}

Then run TestEndOfStreamBehavior, either through your IDE or through the command line (mvn clean install).

Expected behavior

The reproducer should throw an exception when using the EncryptionClient, but not the regular client.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages