summaryrefslogtreecommitdiffstats
path: root/base/common/src/com
diff options
context:
space:
mode:
authorChristina Fu <cfu@redhat.com>2017-02-18 12:27:49 -0800
committerChristina Fu <cfu@redhat.com>2017-03-28 09:03:35 -0400
commit5f2d025962afa34deca93c3b46ff374376c0ea43 (patch)
tree765ac98c7b7a452cc9b8e4da612a227fe683986e /base/common/src/com
parent77b75edc9b6fb1442afc5c595c7aa2194a2c1da1 (diff)
downloadpki-5f2d025962afa34deca93c3b46ff374376c0ea43.tar.gz
pki-5f2d025962afa34deca93c3b46ff374376c0ea43.tar.xz
pki-5f2d025962afa34deca93c3b46ff374376c0ea43.zip
Bug 1419734 CMC: id-cmc-identityProofV2 feature implementation This patch adds both client and server support for two cmc controls: id-cmc-identityProofV2 - for supporting RFC5272, and id-cmc-identification - for assisting in shared secret search; Note: for client, only CMCRequest is updated in this patch
Diffstat (limited to 'base/common/src/com')
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/ISharedToken.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/base/common/src/com/netscape/certsrv/authentication/ISharedToken.java b/base/common/src/com/netscape/certsrv/authentication/ISharedToken.java
index 830c8866e..84b024404 100644
--- a/base/common/src/com/netscape/certsrv/authentication/ISharedToken.java
+++ b/base/common/src/com/netscape/certsrv/authentication/ISharedToken.java
@@ -26,6 +26,9 @@ import org.mozilla.jss.pkix.cmc.PKIData;
*/
public interface ISharedToken {
+ // support for id_cmc_identification
+ public String getSharedToken(String identification);
+
public String getSharedToken(PKIData cmcData);
public String getSharedToken(BigInteger serialnum);