Fixed typo
This commit is contained in:
parent
8fc6b2e434
commit
e612f1eb82
|
@ -45,7 +45,7 @@ if ( await bigintCryptoUtils.isProbablyPrime(prime) )
|
||||||
// code if is prime
|
// code if is prime
|
||||||
|
|
||||||
// Get a cryptographically secure random number between 1 and 2**256 bits.
|
// Get a cryptographically secure random number between 1 and 2**256 bits.
|
||||||
const rnd = bigintCryptoUtils.randBetween(BigInt(2)**256);
|
const rnd = bigintCryptoUtils.randBetween(BigInt(2)**BigInt(256));
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -73,7 +73,7 @@ From a browser, you can just load the module in a html page as:
|
||||||
alert(p.toString() + '\nIs prime?\n' + isPrime);
|
alert(p.toString() + '\nIs prime?\n' + isPrime);
|
||||||
|
|
||||||
// Get a cryptographically secure random number between 1 and 2**256 bits.
|
// Get a cryptographically secure random number between 1 and 2**256 bits.
|
||||||
const rnd = await bigintCryptoUtils.randBetween(BigInt(2)**256);
|
const rnd = await bigintCryptoUtils.randBetween(BigInt(2)**BigInt(256));
|
||||||
alert(rnd);
|
alert(rnd);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue