mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +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();
|
|
};
|