2015-04-22 06:24:45 +02:00
|
|
|
// ignore warnings in this file
|
|
|
|
#include "libtorrent/aux_/disable_warnings_push.hpp"
|
|
|
|
|
2014-07-19 09:12:20 +02:00
|
|
|
#include "libtorrent/ed25519.hpp"
|
2013-08-18 18:01:20 +02:00
|
|
|
#include "sha512.h"
|
|
|
|
#include "ge.h"
|
|
|
|
|
|
|
|
|
|
|
|
void ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed) {
|
|
|
|
ge_p3 A;
|
|
|
|
|
|
|
|
sha512(seed, 32, private_key);
|
|
|
|
private_key[0] &= 248;
|
|
|
|
private_key[31] &= 63;
|
|
|
|
private_key[31] |= 64;
|
|
|
|
|
|
|
|
ge_scalarmult_base(&A, private_key);
|
|
|
|
ge_p3_tobytes(public_key, &A);
|
|
|
|
}
|