26#ifndef CRYPTOPP_DONNA_H
27#define CRYPTOPP_DONNA_H
56int curve25519_mult(
byte sharedKey[32], const
byte secretKey[32], const
byte othersKey[32]);
82int ed25519_sign(const
byte* message,
size_t messageLength, const
byte secretKey[32], const
byte publicKey[32],
byte signature[64]);
99int ed25519_sign(std::istream& stream, const
byte secretKey[32], const
byte publicKey[32],
byte signature[64]);
113ed25519_sign_open(const
byte *message,
size_t messageLength, const
byte publicKey[32], const
byte signature[64]);
133#ifndef CRYPTOPP_DOXYGEN_PROCESSING
142#if defined(CRYPTOPP_WORD128_AVAILABLE) || \
143 (defined(_MSC_VER) && defined(_M_X64))
144# define CRYPTOPP_CURVE25519_64BIT 1
146# define CRYPTOPP_CURVE25519_32BIT 1
165#if (CRYPTOPP_SSE2_INTRIN_AVAILABLE) && defined(_MSC_VER)
166# define CRYPTOPP_CURVE25519_SSE2 1
169#if (CRYPTOPP_CURVE25519_SSE2)
170 extern int curve25519_mult_SSE2(
byte sharedKey[32],
const byte secretKey[32],
const byte othersKey[32]);
Abstract base classes that provide a uniform interface to this library.
int ed25519_sign_open(const byte *message, size_t messageLength, const byte publicKey[32], const byte signature[64])
Verifies a signature on a message.
int ed25519_sign(const byte *message, size_t messageLength, const byte secretKey[32], const byte publicKey[32], byte signature[64])
Creates a signature on a message.
int ed25519_publickey(byte publicKey[32], const byte secretKey[32])
Creates a public key from a secret key.
int curve25519_mult(byte publicKey[32], const byte secretKey[32])
Generate a public key.
Crypto++ library namespace.