1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-25 10:22:18 -05:00

bugfix util

This commit is contained in:
Tankred Hase 2013-04-04 18:39:22 +02:00
parent ef54dc3aae
commit 8c7a464fc8

View File

@ -142,7 +142,7 @@ app.crypto.Util = function(window, uuid) {
var b = new Uint8Array(buf); var b = new Uint8Array(buf);
var str = ''; var str = '';
for (var i = 0; i < b.byteLength; i++) { for (var i = 0; i < b.length; i++) {
str += String.fromCharCode(b[i]); str += String.fromCharCode(b[i]);
} }
@ -157,7 +157,7 @@ app.crypto.Util = function(window, uuid) {
this.uint8Arr2BinStr = function(buf) { this.uint8Arr2BinStr = function(buf) {
var str = ''; var str = '';
for (var i = 0; i < buf.byteLength; i++) { for (var i = 0; i < buf.length; i++) {
str += String.fromCharCode(buf[i]); str += String.fromCharCode(buf[i]);
} }