> Massimiliano Pala schrieb:
>> Please let me know if this works...

Finally I got it!

Max, your idea with the newline was correct, but on the wrong location.
The data to be signed are evaluated in viewCRR and there has it to be changed.

Here is the corresponding diff:

--- viewCRR.orig        2008-10-27 14:16:50.000000000 +0100
+++ viewCRR     2008-10-27 14:17:50.000000000 +0100
@@ -113,8 +113,8 @@
      $text .= "REVOKE_CERTIFICATE_NOTAFTER = " .  
($req->getParsed()->{REVOKE_CERTIFICATE_NOTAFTER} or gettext("n/a")) .  
"\r\n";
      $text .= "REVOKE_CERTIFICATE_SERIAL = " .  
($req->getParsed()->{REVOKE_CERTIFICATE_SERIAL} or gettext("n/a")) .  
"\r\n";
      $text .= "REVOKE_CERTIFICATE_ISSUER_DN = " .  
($req->getParsed()->{REVOKE_CERTIFICATE_ISSUER_DN} or gettext("n/a"))  
. "\r\n";
-    $text .= "REVOKE_CERTIFICATE_KEY_DIGEST = " .  
($req->getParsed()->{REVOKE_CERTIFICATE_KEY_DIGEST} or gettext("n/a"))  
. "\r\n";
-    $text .= "USER_CRR = ". $req->getParsed()->{USER_CRR} . "\r\n" if  
($req->getParsed()->{USER_CRR});
+    $text .= "REVOKE_CERTIFICATE_KEY_DIGEST = " .  
($req->getParsed()->{REVOKE_CERTIFICATE_KEY_DIGEST} or gettext("n/a"));
+    $text .= "\r\nUSER_CRR = " . $req->getParsed()->{USER_CRR} if  
($req->getParsed()->{USER_CRR});

      $hidden_list->{"head"} = "";
      $hidden_list->{"text"} = $header.$text;

Tested with firefox 3.0 ans IE7


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Openca-Users mailing list
Openca-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openca-users

Reply via email to