|
From: <pe...@us...> - 2004-01-07 23:12:23
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/builders
In directory sc8-pr-cvs1:/tmp/cvs-serv16630/src/java/org/neuclear/id/builders
Modified Files:
IdentityBuilder.java
Log Message:
XMLSig now has various added features:
- KeyInfo supports X509v3 (untested)
- KeyInfo supports KeyName
- When creating a XMLSignature and signing it with a Signer, it adds the alias to the KeyName
Added KeyResolver interface and KeyResolverFactory Class. At the moment no implementations.
Index: IdentityBuilder.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/builders/IdentityBuilder.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** IdentityBuilder.java 19 Dec 2003 18:03:34 -0000 1.16
--- IdentityBuilder.java 7 Jan 2004 23:12:20 -0000 1.17
***************
*** 2,5 ****
--- 2,12 ----
* $Id$
* $Log$
+ * Revision 1.17 2004/01/07 23:12:20 pelle
+ * XMLSig now has various added features:
+ * - KeyInfo supports X509v3 (untested)
+ * - KeyInfo supports KeyName
+ * - When creating a XMLSignature and signing it with a Signer, it adds the alias to the KeyName
+ * Added KeyResolver interface and KeyResolverFactory Class. At the moment no implementations.
+ *
* Revision 1.16 2003/12/19 18:03:34 pelle
* Revamped a lot of exception handling throughout the framework, it has been simplified in most places:
***************
*** 280,284 ****
private void setPublicKey(final PublicKey allow) {
if (allow != null) {
! final QName allowName = DocumentHelper.createQName("allow", NSTools.NS_NEUID);
Element pub=getElement().element(allowName);
if (pub==null)
--- 287,291 ----
private void setPublicKey(final PublicKey allow) {
if (allow != null) {
! final QName allowName = DocumentHelper.createQName("Allow", NSTools.NS_NEUID);
Element pub=getElement().element(allowName);
if (pub==null)
|