mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-23 04:42:06 +01:00
EncryptionOptions: Change return val of overrideEncryptionAlgorithm to EncryptionOptions
This commit is contained in:
parent
963a8170da
commit
3fd929916d
1 changed files with 2 additions and 1 deletions
|
@ -273,11 +273,12 @@ public class EncryptionOptions {
|
|||
*
|
||||
* @param encryptionAlgorithm encryption algorithm override
|
||||
*/
|
||||
public void overrideEncryptionAlgorithm(SymmetricKeyAlgorithm encryptionAlgorithm) {
|
||||
public EncryptionOptions overrideEncryptionAlgorithm(SymmetricKeyAlgorithm encryptionAlgorithm) {
|
||||
if (encryptionAlgorithm == SymmetricKeyAlgorithm.NULL) {
|
||||
throw new IllegalArgumentException("Plaintext encryption can only be used to denote unencrypted secret keys.");
|
||||
}
|
||||
this.encryptionAlgorithmOverride = encryptionAlgorithm;
|
||||
return this;
|
||||
}
|
||||
|
||||
public interface EncryptionKeySelector {
|
||||
|
|
Loading…
Reference in a new issue