|
From: <bob...@us...> - 2003-09-11 08:58:19
|
Update of /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler
In directory sc8-pr-cvs1:/tmp/cvs-serv2330/src/hk/hku/cecid/phoenix/message/handler
Modified Files:
Constants.java
Log Message:
Implement SSL Client Authentication.
set SSL client cert map with URL.
however, currently don't know how to choose suitable client cert
upon certificate request from server.
Index: Constants.java
===================================================================
RCS file: /cvsroot/ebxmlms/ebxmlms/src/hk/hku/cecid/phoenix/message/handler/Constants.java,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** Constants.java 9 Sep 2003 04:06:18 -0000 1.31
--- Constants.java 11 Sep 2003 08:58:08 -0000 1.32
***************
*** 321,324 ****
--- 321,354 ----
"MSH/SSL/TrustedAnchor/KeyStore/Password";
+ /**
+ Path to access the ssl client authentication info.
+ */
+ public static final String PROPERTY_SSL_CLIENT_AUTH = "MSH/SSL/ClientAuth";
+
+ /**
+ Path to access the URL inside ssl client authentication info.
+ */
+ public static final String PROPERTY_URL = "URL";
+
+ /**
+ Path to access the Keystore path inside ssl client authentication info.
+ */
+ public static final String PROPERTY_KEY_STORE_PATH = "KeyStore/Path";
+
+ /**
+ Path to access the Keystore file inside ssl client authentication info.
+ */
+ public static final String PROPERTY_KEY_STORE_FILE = "KeyStore/File";
+
+ /**
+ Path to access the Keystore alias inside ssl client authentication info.
+ */
+ public static final String PROPERTY_KEY_STORE_ALIAS = "KeyStore/Alias";
+
+ /**
+ Path to access the Keystore password inside ssl client authentication info.
+ */
+ public static final String PROPERTY_KEY_STORE_PASSWORD
+ = "KeyStore/Password";
// Settings for Repositories
|