summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Crypto/Crypto.idl
blob: 8cedd797a45c630ffd614e2de430de58a9271c3f (plain)
1
2
3
4
5
6
7
[Exposed=(Window,Worker)]
interface Crypto {
  [SecureContext] readonly attribute SubtleCrypto subtle;

  // FIXME: the argument and the return value should be of type ArrayBufferView
  any getRandomValues(any array);
};