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; }