mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
// https://w3c.github.io/webcrypto/#crypto-interface
|
|
[Exposed=(Window,Worker)]
|
|
interface Crypto {
|
|
[SecureContext] readonly attribute SubtleCrypto subtle;
|
|
|
|
ArrayBufferView getRandomValues(ArrayBufferView array);
|
|
|
|
[SecureContext] DOMString randomUUID();
|
|
};
|