A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.
To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).
Crypto: Difference between revisions
No edit summary |
|||
Line 2: | Line 2: | ||
This document describes a proposal for the window.crypto API. | This document describes a proposal for the window.crypto API. | ||
=Definitions= | |||
==Cryptographically Random Values== | |||
=Interface= | =Interface= |
Revision as of 21:58, 14 February 2011
Overview
This document describes a proposal for the window.crypto API.
Definitions
Cryptographically Random Values
Interface
[Suplemental, NoInterfaceObject] interface Window { readonly attribute Crypto crypto; }; [NoInterfaceObject] interface Crypto { void getRandomValues(in ArrayBufferView array); };
Methods
getRandomValues
The getRandomValues method fills array with random data. Specifically, if array is an ArrayBufferView of an integer type (i.e., Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, or Uint32Array), then all the elements of array are overwritten with cryptographically random values. If array is not of an appropriate type, getRandomValues throws a TYPE_MISMATCH_ERR. If no cryptographically random values are available, getRandomValues throws a NOT_SUPPORTED_ERR.