mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
16 lines
196 B
C
16 lines
196 B
C
|
/*
|
||
|
* Copyright (c) 2024, the Ladybird developers.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Span.h>
|
||
|
|
||
|
namespace Crypto {
|
||
|
|
||
|
void fill_with_secure_random(Bytes);
|
||
|
|
||
|
}
|