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

From WHATWG Wiki
Jump to navigation Jump to search
No edit summary
 
(20 intermediate revisions by 5 users not shown)
Line 1: Line 1:
=Overview=
This proposal has been subsumed by the <code>window.crypto</code> API in the [http://www.w3.org/2012/webcrypto/WebCryptoAPI/ Web Cryptography API] being developed by the W3C Web Cryptography Working Group.
 
This document describes a proposal for the window.crypto API.
 
=Interface=
 
<pre>
[Suplemental, NoInterfaceObject]
interface Window {
  readonly attribute Crypto crypto;
};
 
[NoInterfaceObject]
interface Crypto {
  void getRandomValues(in ArrayBufferView array);
};
</pre>
 
=Methods=
 
==getRandomValues==

Latest revision as of 16:48, 21 August 2012

This proposal has been subsumed by the window.crypto API in the Web Cryptography API being developed by the W3C Web Cryptography Working Group.