aboutsummaryrefslogtreecommitdiff
path: root/externals/libressl/crypto/ui/ui_null.c
blob: cbc9a5025bffa48dee9d6a9853e2dd9fb0f6f8fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);