src/main/java/software/amazon/encryption/s3/materials/KmsDiscoveryKeyring.java [63:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        .encryptionContext(materials.encryptionContext())
        .ciphertextBlob(SdkBytes.fromByteArray(encryptedDataKey))
        .overrideConfiguration(builder -> builder.addApiName(API_NAME))
        .build();

      DecryptResponse response = _kmsClient.decrypt(request);
      return response.plaintext().asByteArray();
    }
  };
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/software/amazon/encryption/s3/materials/KmsKeyring.java [62:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    .encryptionContext(materials.encryptionContext())
                    .ciphertextBlob(SdkBytes.fromByteArray(encryptedDataKey))
                    .overrideConfiguration(builder -> builder.addApiName(API_NAME))
                    .build();

            DecryptResponse response = _kmsClient.decrypt(request);
            return response.plaintext().asByteArray();
        }
    };
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



