diff options
| author | Ade Lee <alee@redhat.com> | 2017-03-15 22:50:34 -0400 |
|---|---|---|
| committer | Ade Lee <alee@redhat.com> | 2017-03-16 15:50:32 -0400 |
| commit | 6b9fc4b77fbd9ce3c8b1ed72bbc78aab7e28c0de (patch) | |
| tree | f546079a7fcaf309d4082e7107b984fe479ded2b /base/common/src | |
| parent | 67d51413323e1d55fdc04ca5edf5d9f05afb0ebe (diff) | |
| download | pki-6b9fc4b77fbd9ce3c8b1ed72bbc78aab7e28c0de.tar.gz pki-6b9fc4b77fbd9ce3c8b1ed72bbc78aab7e28c0de.tar.xz pki-6b9fc4b77fbd9ce3c8b1ed72bbc78aab7e28c0de.zip | |
Add config options to allow storage wrappings to be set
Wrapping params can now be specified in CS.cfg as per design.
The default will be AES. If the parameters are not set, then the
old mechanism (DES) will be used instead.
A migration script will be created in a separate commit.
Change-Id: I01a74b99c4ed127d66e5b766357af59a1147839d
Diffstat (limited to 'base/common/src')
| -rw-r--r-- | base/common/src/com/netscape/certsrv/security/IEncryptionUnit.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/common/src/com/netscape/certsrv/security/IEncryptionUnit.java b/base/common/src/com/netscape/certsrv/security/IEncryptionUnit.java index abb5f11a2..004fd8aa0 100644 --- a/base/common/src/com/netscape/certsrv/security/IEncryptionUnit.java +++ b/base/common/src/com/netscape/certsrv/security/IEncryptionUnit.java @@ -61,7 +61,7 @@ public interface IEncryptionUnit extends IToken { SymmetricKey.Usage usage, WrappingParams params) throws Exception; - public WrappingParams getWrappingParams() throws EBaseException; + public WrappingParams getWrappingParams() throws Exception; public WrappingParams getOldWrappingParams(); } |
