gateway2/Tongsuo-8.4.0/test/evp_pkey_ctx_new_from_name.c
2026-07-11 13:40:57 +08:00

15 lines
279 B
C

#include <stdio.h>
#include <openssl/ec.h>
#include <openssl/evp.h>
#include <openssl/err.h>
int main(int argc, char *argv[])
{
EVP_PKEY_CTX *pctx = NULL;
pctx = EVP_PKEY_CTX_new_from_name(NULL, "NO_SUCH_ALGORITHM", NULL);
EVP_PKEY_CTX_free(pctx);
return 0;
}