First Commit
This commit is contained in:
18
externals/libressl/crypto/ui/ui_null.c
vendored
Normal file
18
externals/libressl/crypto/ui/ui_null.c
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
/* $OpenBSD: ui_null.c,v 1.2 2023/02/16 08:38:17 tb Exp $ */
|
||||
|
||||
/*
|
||||
* Written by Theo Buehler. Public domain.
|
||||
*/
|
||||
|
||||
#include "ui_local.h"
|
||||
|
||||
static const UI_METHOD ui_null = {
|
||||
.name = "OpenSSL NULL UI",
|
||||
};
|
||||
|
||||
const UI_METHOD *
|
||||
UI_null(void)
|
||||
{
|
||||
return &ui_null;
|
||||
}
|
||||
LCRYPTO_ALIAS(UI_null);
|
||||
Reference in New Issue
Block a user