summaryrefslogtreecommitdiff
path: root/libs/libaxolotl/src/curve25519/ed25519/additions/keygen.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-03-26 13:06:41 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-03-26 13:06:41 +0300
commitaec8f049d43d79c6c8c26a7d9ddfd9460d267275 (patch)
tree5e75220de26fda9b7b0527d550204c78a86ad90c /libs/libaxolotl/src/curve25519/ed25519/additions/keygen.h
parentf2764176c58829d24fee7a830a3c9ac2b57d1906 (diff)
libaxolotl doesn't exist anymore, it's renamed to libsignal
Diffstat (limited to 'libs/libaxolotl/src/curve25519/ed25519/additions/keygen.h')
-rw-r--r--libs/libaxolotl/src/curve25519/ed25519/additions/keygen.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/libs/libaxolotl/src/curve25519/ed25519/additions/keygen.h b/libs/libaxolotl/src/curve25519/ed25519/additions/keygen.h
deleted file mode 100644
index e86e7c5582..0000000000
--- a/libs/libaxolotl/src/curve25519/ed25519/additions/keygen.h
+++ /dev/null
@@ -1,12 +0,0 @@
-
-#ifndef __KEYGEN_H__
-#define __KEYGEN_H__
-
-/* Sets and clears bits to make a random 32 bytes into a private key */
-void sc_clamp(unsigned char* a);
-
-/* The private key should be 32 random bytes "clamped" by sc_clamp() */
-void curve25519_keygen(unsigned char* curve25519_pubkey_out, /* 32 bytes */
- const unsigned char* curve25519_privkey_in); /* 32 bytes */
-
-#endif