mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
12 lines
299 B
Plaintext
12 lines
299 B
Plaintext
#import <Crypto/SubtleCrypto.idl>
|
|
|
|
[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);
|
|
|
|
[SecureContext] DOMString randomUUID();
|
|
};
|