|
From: <pe...@us...> - 2004-01-13 23:38:30
|
Update of /cvsroot/neuclear/neuclear-id/src/test-cactus/org/neuclear/auth
In directory sc8-pr-cvs1:/tmp/cvs-serv25435/src/test-cactus/org/neuclear/auth
Modified Files:
AuthenticationFilterTest.java
Log Message:
Refactoring parts of the core of XMLSignature. There shouldnt be any real API changes.
Index: AuthenticationFilterTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/test-cactus/org/neuclear/auth/AuthenticationFilterTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AuthenticationFilterTest.java 12 Dec 2003 19:28:03 -0000 1.1
--- AuthenticationFilterTest.java 13 Jan 2004 23:38:26 -0000 1.2
***************
*** 35,38 ****
--- 35,41 ----
$Id$
$Log$
+ Revision 1.2 2004/01/13 23:38:26 pelle
+ Refactoring parts of the core of XMLSignature. There shouldnt be any real API changes.
+
Revision 1.1 2003/12/12 19:28:03 pelle
All the Cactus tests now for signing servlet.
***************
*** 58,62 ****
AuthenticationTicketBuilder authreq = new AuthenticationTicketBuilder("neu://bob@test", "neu://test", "http://localhost");
! SignedNamedObject signed = authreq.sign(signer);
theRequest.setContentType("application/x-www-form-urlencoded");
String b64 = Base64.encode(signed.getEncoded().getBytes());
--- 61,65 ----
AuthenticationTicketBuilder authreq = new AuthenticationTicketBuilder("neu://bob@test", "neu://test", "http://localhost");
! SignedNamedObject signed = authreq.convert("neu://bob@test",signer);
theRequest.setContentType("application/x-www-form-urlencoded");
String b64 = Base64.encode(signed.getEncoded().getBytes());
|