This commit is contained in:
purplerain 2023-07-10 00:10:46 +00:00
parent 2a351e0cdc
commit f57be82572
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
704 changed files with 20524 additions and 10572 deletions

View file

@ -1,4 +1,4 @@
/* $OpenBSD: rand_err.c,v 1.16 2022/07/12 14:42:50 kn Exp $ */
/* $OpenBSD: rand_err.c,v 1.17 2023/07/07 12:01:32 beck Exp $ */
/* ====================================================================
* Copyright (c) 1999-2011 The OpenSSL Project. All rights reserved.
*
@ -91,3 +91,4 @@ ERR_load_RAND_strings(void)
}
#endif
}
LCRYPTO_ALIAS(ERR_load_RAND_strings);

View file

@ -1,4 +1,4 @@
/* $OpenBSD: rand_lib.c,v 1.20 2014/10/22 13:02:04 jsing Exp $ */
/* $OpenBSD: rand_lib.c,v 1.22 2023/07/07 19:37:54 beck Exp $ */
/*
* Copyright (c) 2014 Ted Unangst <tedu@openbsd.org>
*
@ -29,18 +29,21 @@ RAND_set_rand_method(const RAND_METHOD *meth)
{
return 1;
}
LCRYPTO_ALIAS(RAND_set_rand_method);
const RAND_METHOD *
RAND_get_rand_method(void)
{
return NULL;
}
LCRYPTO_ALIAS(RAND_get_rand_method);
RAND_METHOD *
RAND_SSLeay(void)
{
return NULL;
}
LCRYPTO_ALIAS(RAND_SSLeay);
#ifndef OPENSSL_NO_ENGINE
int
@ -48,6 +51,7 @@ RAND_set_rand_engine(ENGINE *engine)
{
return 1;
}
LCRYPTO_ALIAS(RAND_set_rand_engine);
#endif
void

View file

@ -1,4 +1,4 @@
/* $OpenBSD: randfile.c,v 1.42 2015/09/10 15:56:25 jsing Exp $ */
/* $OpenBSD: randfile.c,v 1.44 2023/07/07 19:37:54 beck Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*