forked from premiere/premiere-libtorrent
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
#ifndef ED25519_HPP
|
|
#define ED25519_HPP
|
|
|
|
#include "libtorrent/export.hpp" // for TORRENT_EXPORT
|
|
#include <stddef.h> // for size_t
|
|
|
|
enum
|
|
{
|
|
ed25519_seed_size = 32,
|
|
ed25519_private_key_size = 64,
|
|
ed25519_public_key_size = 32,
|
|
ed25519_signature_size = 64,
|
|
ed25519_scalar_size = 32,
|
|
ed25519_shared_secret_size = 32
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
#ifndef ED25519_NO_SEED
|
|
void TORRENT_EXPORT ed25519_create_seed(unsigned char *seed);
|
|
#endif
|
|
|
|
// TODO: 3 wrap these into C++ calls with proper types (dht::signature,
|
|
// public_key and secret_key)
|
|
void TORRENT_EXPORT ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed);
|
|
void TORRENT_EXPORT ed25519_sign(unsigned char *signature, const unsigned char *message, size_t message_len, const unsigned char *public_key, const unsigned char *private_key);
|
|
int TORRENT_EXPORT ed25519_verify(const unsigned char *signature, const unsigned char *message, size_t message_len, const unsigned char *private_key);
|
|
void TORRENT_EXPORT ed25519_add_scalar(unsigned char *public_key, unsigned char *private_key, const unsigned char *scalar);
|
|
void TORRENT_EXPORT ed25519_key_exchange(unsigned char *shared_secret, const unsigned char *public_key, const unsigned char *private_key);
|
|
|
|
}
|
|
|
|
#endif // ED25519_HPP
|
|
|