Crypto.idl 256 B

123456789
  1. #import <Crypto/SubtleCrypto.idl>
  2. [Exposed=(Window,Worker)]
  3. interface Crypto {
  4. [SecureContext] readonly attribute SubtleCrypto subtle;
  5. // FIXME: the argument and the return value should be of type ArrayBufferView
  6. any getRandomValues(any array);
  7. };