aboutsummaryrefslogtreecommitdiff
path: root/libcmix-crypto/rsa/rsa.h
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-09-29 14:41:32 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-09-29 14:41:32 +0200
commitf7f0e8c53bc8231264346ef91e2f533164a25562 (patch)
treec3ec176a2fc12bc0ee99f017d15c1f8be73bb921 /libcmix-crypto/rsa/rsa.h
parent8507aec59b92e16ed6a05c92fea6ced5dba3f753 (diff)
downloadcmix-f7f0e8c53bc8231264346ef91e2f533164a25562.tar.gz
cmix-f7f0e8c53bc8231264346ef91e2f533164a25562.tar.bz2
cmix-f7f0e8c53bc8231264346ef91e2f533164a25562.zip
Replaced the RSA implementation with an Elgamal implementation.
Diffstat (limited to 'libcmix-crypto/rsa/rsa.h')
-rw-r--r--libcmix-crypto/rsa/rsa.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/libcmix-crypto/rsa/rsa.h b/libcmix-crypto/rsa/rsa.h
deleted file mode 100644
index f479a95..0000000
--- a/libcmix-crypto/rsa/rsa.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include "api.h"
-
-extern struct KeyPair rsa_create_keypair();
-extern void rsa_keypair_deleter(struct KeyPair p);
-
-extern struct SharedKey rsa_derive_shared_key(struct KeyPair pair, unsigned char* pub_key, bool swap_pub_order);
-extern void rsa_shared_key_deleter(struct SharedKey s);
-
-struct Api get_rsa_implementation();
-
-#ifdef __cplusplus
-}
-#endif