mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
12 lines
302 B
Plaintext
12 lines
302 B
Plaintext
#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();
|
|
};
|