bugfix: sha2 must return Uint8Array, not ArrayBuffer

Bu işleme şunda yer alıyor:
AJ ONeal 2020-08-20 01:02:18 -06:00
ebeveyn c66e9267aa
işleme af7ee5426f
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme

Dosyayı Görüntüle

@ -9,5 +9,7 @@ sha2.sum = function (alg, str) {
data = encoder.encode(str);
}
var sha = 'SHA-' + String(alg).replace(/^sha-?/i, '');
return window.crypto.subtle.digest(sha, data);
return window.crypto.subtle.digest(sha, data).then(function (buf) {
return new Uint8Array(buf);
});
};