File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
src/main/java/com/mastercard/developer/encryption Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1414
1515abstract class EncryptionConfigBuilder {
1616
17- Certificate encryptionCertificate ;
18- String encryptionKeyFingerprint ;
19- PrivateKey decryptionKey ;
20- FieldLevelEncryptionConfig .FieldValueEncoding fieldValueEncoding ;
21- Map <String , String > encryptionPaths = new HashMap <>();
22- Map <String , String > decryptionPaths = new HashMap <>();
23- String encryptedValueFieldName ;
24-
17+ protected Certificate encryptionCertificate ;
18+ protected String encryptionKeyFingerprint ;
19+ protected PrivateKey decryptionKey ;
20+ protected Map <String , String > encryptionPaths = new HashMap <>();
21+ protected Map <String , String > decryptionPaths = new HashMap <>();
22+ protected String encryptedValueFieldName ;
2523
2624 void computeEncryptionKeyFingerprintWhenNeeded () throws EncryptionException {
2725 try {
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ public class FieldLevelEncryptionConfigBuilder extends EncryptionConfigBuilder {
2525 private String encryptionCertificateFingerprintHeaderName ;
2626 private String encryptionKeyFingerprintFieldName ;
2727 private String encryptionKeyFingerprintHeaderName ;
28+ private FieldLevelEncryptionConfig .FieldValueEncoding fieldValueEncoding ;
2829
2930 /**
3031 * Get an instance of the builder.
You can’t perform that action at this time.
0 commit comments