diff options
| author | Jack Magne <jmagne@localhost.localdomain> | 2015-03-12 19:08:41 -0700 |
|---|---|---|
| committer | Jack Magne <jmagne@localhost.localdomain> | 2015-03-17 12:44:28 -0700 |
| commit | 87ffc7a341860f3f1ece434e90e4bc33a02b8155 (patch) | |
| tree | d833d1868284ce2c3865a674aca0bad66a0f7ebd /base/server/cms/src/org | |
| parent | f98e599b1e95572a589b8813bc6cb0c2e70fdd0b (diff) | |
NISTSP8000 feature.
Implementation of the nistSP800 dervication feature.
Works for both supported scp01 cards and scp02 cards.
During the various session key and key upgrade functions, the nist dervication code is being called.
Review comments addressed
Cleanup of some input validation on the TKS.
Added some sanity checking on the TPS side for key versions and token cuid's and kdd's.
Final review comments.
Fixed issue with extracting the kdd from the AppletInfo class.
Fixed issue with sending the KDD to the encryptData TKS servlet.
Added requested entries to the CS.cfg .
Diffstat (limited to 'base/server/cms/src/org')
| -rw-r--r-- | base/server/cms/src/org/dogtagpki/server/connector/IRemoteRequest.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/server/cms/src/org/dogtagpki/server/connector/IRemoteRequest.java b/base/server/cms/src/org/dogtagpki/server/connector/IRemoteRequest.java index ebaf12636..8025813e6 100644 --- a/base/server/cms/src/org/dogtagpki/server/connector/IRemoteRequest.java +++ b/base/server/cms/src/org/dogtagpki/server/connector/IRemoteRequest.java @@ -27,6 +27,7 @@ package org.dogtagpki.server.connector; public interface IRemoteRequest { // public static final String TOKEN_CUID = "CUID"; public static final String TOKEN_CUID = "tokencuid"; + public static final String TOKEN_KDD = "KDD"; public static final String GET_XML = "xml"; public static final int RESPONSE_STATUS_NOT_FOUND = -1; public static final String RESPONSE_STATUS = "status"; |
