зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
9dfb68cb2a
Коммит
1467b9dd9d
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче