File: test_openssl_ed448.c

package info (click to toggle)
softhsm2 2.6.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,496 kB
  • sloc: cpp: 65,881; sh: 4,363; ansic: 2,018; makefile: 655
file content (11 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (3)
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;
}