Crypto.idl 302 B

1234567891011
  1. #import <Crypto/SubtleCrypto.idl>
  2. // https://w3c.github.io/webcrypto/#crypto-interface
  3. [Exposed=(Window,Worker)]
  4. interface Crypto {
  5. [SecureContext] readonly attribute SubtleCrypto subtle;
  6. ArrayBufferView getRandomValues(ArrayBufferView array);
  7. [SecureContext] DOMString randomUUID();
  8. };