Update code to v1.0.14 (10)

This commit is contained in:
Caten
2024-02-29 19:35:00 +08:00
parent c2ee3b694c
commit a956d26f6d
3188 changed files with 2317293 additions and 146 deletions

40
android/extern/wolfssl/wnr-example.conf vendored Normal file
View File

@@ -0,0 +1,40 @@
# Example netRandom client library configuration file
#
# This uses /dev/urandom for the seed, but could also
# be set up to use a network entropy source
version = "1.0";
WnrClient:
{
dir:
{
working = "/var/run/wnrentropy";
socket = "/var/run/wnrentropy";
};
drbg:
{
type = "SHA256";
security_strength = 256;
reseed_interval = 1;
};
source:
{
seed = {
type = "FILEPATH";
path = "/dev/urandom";
};
stream = {
type = "FILEPATH";
path = "/dev/urandom";
};
};
buffer:
{
size = 8192;
threshold = 7168;
};
};