mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
11 lines
302 B
Text
11 lines
302 B
Text
#import <Crypto/SubtleCrypto.idl>
|
|
|
|
// https://w3c.github.io/webcrypto/#crypto-interface
|
|
[Exposed=(Window,Worker)]
|
|
interface Crypto {
|
|
[SecureContext] readonly attribute SubtleCrypto subtle;
|
|
|
|
ArrayBufferView getRandomValues(ArrayBufferView array);
|
|
|
|
[SecureContext] DOMString randomUUID();
|
|
};
|