rm log statement

This commit is contained in:
Mark Vayngrib
2016-05-01 14:03:31 -04:00
parent 837a0ef01e
commit 1efeba47af
-1
View File
@@ -40,7 +40,6 @@ export function randomBytes (length, cb) {
let size = length
let wordCount = Math.ceil(size * 0.25)
let randomBytes = sjcl.random.randomWords(wordCount, 10)
console.log(randomBytes)
let hexString = sjcl.codec.hex.fromBits(randomBytes)
hexString = hexString.substr(0, size * 2)
return new Buffer(hexString, 'hex')