Crypto.idl 299 B

1234567891011
  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. [SecureContext] DOMString randomUUID();
  8. };