Michael,
I think that the signForm. js should be modifies as folows:
add function:
function Split64Char(str) {
var result = "";
var i=0;
var j=0;for (var i=0; i < str.length; i++){
if ( (i % 64)== 63) {
result = result + str.charAt(i) + "\n";
} else {
result = result + str.charAt(i);
}
}
return result;
}and modify signedText = String2Base64(result); to signedText = Split64Char(String2Base64(result));
This should produce an well-formated signature
Michael Bell wrote:
Hi Oli, hi Alex,
sometime ago somebody sends me a signature from secclab so that I can analyze it. The problem is that I cannot find the mail. Can somebody send me a signature from secclab. Actually I have some problems to motivate secclab to make a signature :(
Michael
------------------------------------------------------- The SF.Net email is sponsored by EclipseCon 2004 Premiere Conference on Open Tools Development and Integration See the breadth of Eclipse activity. February 3-5 in Anaheim, CA. http://www.eclipsecon.org/osdn _______________________________________________ Openca-Users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-users
