aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/c_src/evp.h
diff options
context:
space:
mode:
authorDoug Hogan <[email protected]>2018-12-20 02:09:53 -0800
committerDoug Hogan <[email protected]>2018-12-20 02:30:57 -0800
commit5bcafa6b4549a09cb78a7ac73cac1c38561e4ddc (patch)
tree0f077100d28e1b0595df6934cf3814878d66af7e /lib/crypto/c_src/evp.h
parent9192bd6f560144499c54a02c0c2ca107decff9df (diff)
downloadotp-5bcafa6b4549a09cb78a7ac73cac1c38561e4ddc.tar.gz
otp-5bcafa6b4549a09cb78a7ac73cac1c38561e4ddc.tar.bz2
otp-5bcafa6b4549a09cb78a7ac73cac1c38561e4ddc.zip
Move EVP functionality to a new file
Diffstat (limited to 'lib/crypto/c_src/evp.h')
-rw-r--r--lib/crypto/c_src/evp.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/crypto/c_src/evp.h b/lib/crypto/c_src/evp.h
new file mode 100644
index 0000000000..e216ec7762
--- /dev/null
+++ b/lib/crypto/c_src/evp.h
@@ -0,0 +1,9 @@
+#ifndef E_EVP_H__
+#define E_EVP_H__ 1
+
+#include "common.h"
+
+ERL_NIF_TERM evp_compute_key_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[]);
+ERL_NIF_TERM evp_generate_key_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM argv[]);
+
+#endif /* E_EVP_H__ */