aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffi/ffi.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-06-09 15:44:36 -0400
committerJack Lloyd <[email protected]>2017-06-09 15:44:36 -0400
commite0ad3b1b41dfc9bd580c1359e132f210a321a3df (patch)
tree46e5e01945624c3bb9f3ed138574c51e9253ffb5 /src/lib/ffi/ffi.h
parente0fb6afcd1d6a658d1bb7c593aadaac39e35ebcb (diff)
parent76604b2d8878d333d2bcb5b6d5727d7cc4004c7a (diff)
Merge GH #1066 Add Ed25519 signature scheme
Diffstat (limited to 'src/lib/ffi/ffi.h')
-rw-r--r--src/lib/ffi/ffi.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/ffi/ffi.h b/src/lib/ffi/ffi.h
index 380d3a9ed..3e64c69cd 100644
--- a/src/lib/ffi/ffi.h
+++ b/src/lib/ffi/ffi.h
@@ -846,6 +846,22 @@ BOTAN_DLL int botan_privkey_load_elgamal(botan_privkey_t* key,
botan_mp_t x);
/*
+* Algorithm specific key operations: Ed25519
+*/
+
+BOTAN_DLL int botan_privkey_load_ed25519(botan_privkey_t* key,
+ const uint8_t privkey[32]);
+
+BOTAN_DLL int botan_pubkey_load_ed25519(botan_pubkey_t* key,
+ const uint8_t pubkey[32]);
+
+BOTAN_DLL int botan_privkey_ed25519_get_privkey(botan_privkey_t key,
+ uint8_t output[64]);
+
+BOTAN_DLL int botan_pubkey_ed25519_get_pubkey(botan_pubkey_t key,
+ uint8_t pubkey[32]);
+
+/*
* Public Key Encryption
*/
typedef struct botan_pk_op_encrypt_struct* botan_pk_op_encrypt_t;