Bug 573679 - Fix tests to pass on trunk

Just take parts of a static string instead of randomly generating bytes and btoa-ing.
This commit is contained in:
Edward Lee 2010-06-22 16:47:44 -07:00
Родитель 9dfb68cb2a
Коммит 1467b9dd9d
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -244,11 +244,7 @@ FakeCryptoService.prototype = {
},
generateRandomBytes: function(aByteCount) {
var s = "";
for (var i=0; i < aByteCount; i++) {
s += String.fromCharCode(Math.floor(Math.random() * 256));
}
return btoa(s);
return "not-so-random-now-are-we-HA-HA-HA! >:)".slice(aByteCount);
},
wrapSymmetricKey: function(aSymmetricKey, aEncodedPublicKey) {