12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibJS/Forward.h>
- #include <LibWeb/Bindings/Wrappable.h>
- namespace Web::Crypto {
- class SubtleCrypto
- : public Bindings::Wrappable
- , public RefCounted<SubtleCrypto> {
- public:
- using WrapperType = Bindings::SubtleCryptoWrapper;
- static NonnullRefPtr<SubtleCrypto> create()
- {
- return adopt_ref(*new SubtleCrypto());
- }
- JS::Promise* digest(String const& algorithm, JS::Handle<JS::Object> const& data);
- private:
- SubtleCrypto() = default;
- };
- }
- namespace Web::Bindings {
- SubtleCryptoWrapper* wrap(JS::GlobalObject&, Crypto::SubtleCrypto&);
- }
|