We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6736f06 commit 9db1e45Copy full SHA for 9db1e45
src/main/java/com/mastercard/developer/encryption/JweConfigBuilder.java
@@ -74,6 +74,11 @@ public JweConfigBuilder withEncryptedValueFieldName(String encryptedValueFieldNa
74
return this;
75
}
76
77
+ public JweConfigBuilder withEncryptionKeyFingerprint(String encryptionKeyFingerprint) {
78
+ this.encryptionKeyFingerprint = encryptionKeyFingerprint;
79
+ return this;
80
+ }
81
+
82
private void checkParameterValues() {
83
if (decryptionKey == null && encryptionCertificate == null) {
84
throw new IllegalArgumentException("You must include at least an encryption certificate or a decryption key");
0 commit comments