aboutsummaryrefslogtreecommitdiffstats
path: root/SoftHSMv2/modules/tests/test_openssl_ed448.c
diff options
context:
space:
mode:
Diffstat (limited to 'SoftHSMv2/modules/tests/test_openssl_ed448.c')
-rw-r--r--SoftHSMv2/modules/tests/test_openssl_ed448.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/SoftHSMv2/modules/tests/test_openssl_ed448.c b/SoftHSMv2/modules/tests/test_openssl_ed448.c
new file mode 100644
index 0000000..c97b094
--- /dev/null
+++ b/SoftHSMv2/modules/tests/test_openssl_ed448.c
@@ -0,0 +1,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;
+}