mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
2d96bfd957
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18199)
15 lines
279 B
C
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;
|
|
}
|