mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:42:44 +00:00 
			
		
		
		
	 834202aeb9
			
		
	
	
		834202aeb9
		
	
	
	
	
		
			
			This needs to happen before prototype/constructor intitialization can be made lazy. Otherwise, GC could run during the C++ constructor and try to collect the object currently being created.
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			664 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			664 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021-2022, Linus Groh <linusg@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibJS/Forward.h>
 | |
| #include <LibWeb/Bindings/PlatformObject.h>
 | |
| 
 | |
| namespace Web::Crypto {
 | |
| 
 | |
| class SubtleCrypto final : public Bindings::PlatformObject {
 | |
|     WEB_PLATFORM_OBJECT(SubtleCrypto, Bindings::PlatformObject);
 | |
| 
 | |
| public:
 | |
|     static JS::NonnullGCPtr<SubtleCrypto> create(JS::Realm&);
 | |
| 
 | |
|     virtual ~SubtleCrypto() override;
 | |
| 
 | |
|     JS::Promise* digest(DeprecatedString const& algorithm, JS::Handle<JS::Object> const& data);
 | |
| 
 | |
| private:
 | |
|     explicit SubtleCrypto(JS::Realm&);
 | |
|     virtual void initialize(JS::Realm&) override;
 | |
| };
 | |
| 
 | |
| }
 |