aboutsummaryrefslogtreecommitdiffstats
path: root/SoftHSMv2/modules/tests/test_openssl_ed448.c
blob: c97b094217b452a21e7d6aed5512be12cc38e0a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <openssl/evp.h>
#include <openssl/objects.h>
int main()
{
	EVP_PKEY_CTX *ctx;

	ctx = EVP_PKEY_CTX_new_id(NID_ED448, NULL);
	if (ctx == NULL)
		return 1;
	return 0;
}