mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
eab20129b9
Co-Authored-By: Matthew Olsson <mattco@serenityos.org>
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();
|
|
};
|