mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-10 13:12:56 +00:00
11 lines
299 B
Text
11 lines
299 B
Text
#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();
|
|
};
|