]> git.ipfire.org Git - thirdparty/openssl.git/blame - test/evp_pkey_ctx_new_from_name.c
Fix various typos, repeated words, align some spelling to LDP.
[thirdparty/openssl.git] / test / evp_pkey_ctx_new_from_name.c
CommitLineData
2d96bfd9
DB
1#include <stdio.h>
2#include <openssl/ec.h>
3#include <openssl/evp.h>
4#include <openssl/err.h>
5
6int main(int argc, char *argv[])
7{
8 EVP_PKEY_CTX *pctx = NULL;
9
10 pctx = EVP_PKEY_CTX_new_from_name(NULL, "NO_SUCH_ALGORITHM", NULL);
11 EVP_PKEY_CTX_free(pctx);
12
13 return 0;
14}