The Window.crypto read-only property returns the Crypto object associated to the global object. This object allows web pages access to certain cryptographic related services.
var cryptoObj = window.crypto || window.msCrypto; // for IE 11
Window.crypto property to access the getRandomValues() method.genRandomNumbers = function getRandomNumbers() {
var array = new Uint32Array(10);
window.crypto.getRandomValues(array);
var randText = document.getElementById("myRandText");
randText.innerHTML = "The random numbers are: "
for (var i = 0; i < array.length; i++) {
randText.innerHTML += array[i] + " ";
}
} <p id="myRandText">The random numbers are: </p> <button type="button" onClick='genRandomNumbers()'>Generate 10 random numbers</button>
| Specification | Status | Comment |
|---|---|---|
| Web Cryptography API The definition of 'Window.crypto' in that specification. | Recommendation | Initial definition |
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Edge | Opera | Safari |
|---|---|---|---|---|---|---|---|
| Basic support | 44 (Yes) | (Yes) | (Yes) | 11 ms | 20 | 19 | (Yes) |
| Feature | Chrome for Android | Edge | Firefox Mobile | Firefox OS | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Window global object
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/window/crypto