1
0
mirror of https://github.com/moparisthebest/mail synced 2025-02-07 02:20:14 -05:00

cleanup comments

This commit is contained in:
Tankred Hase 2013-05-14 18:52:41 +02:00
parent 956e184574
commit b25b5256d6

View File

@ -86,9 +86,11 @@ app.crypto.RSA = function(forge) {
this.sign = function(parts) {
var sha = forge.md.sha256.create();
parts.forEach(function(i) {
// decode base64 part and append to sha msg
sha.update(utl.decode64(i));
});
// encode signature to base64
return utl.encode64(privateKey.sign(sha));
};
@ -99,11 +101,12 @@ app.crypto.RSA = function(forge) {
* @return [bool] if the verification was successful
*/
this.verify = function(parts, sig) {
// parse base64 signature to utf8
// decode base64 signature to utf8
var sigUtf8 = utl.decode64(sig);
var sha = forge.md.sha256.create();
parts.forEach(function(i) {
// decode base64 part and append to sha msg
sha.update(utl.decode64(i));
});