mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-18 00:52:57 +00:00
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
5 lines
217 B
Text
5 lines
217 B
Text
[SecureContext,Exposed=(Window,Worker)]
|
|
interface SubtleCrypto {
|
|
// FIXME: Add support for AlgorithmIdentifier ("typedef (object or DOMString)")
|
|
Promise<any> digest(DOMString algorithm, BufferSource data);
|
|
};
|