ed25519/src/keypair.c

17 lines
417 B
C
Raw Normal View History

#include "../include/ed25519.h"
#include "../include/sha512.h"
#include "../include/ge.h"
2013-01-12 00:54:40 +01:00
void ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed) {
2013-01-12 02:38:34 +01:00
ge_p3 A;
2013-01-21 22:28:34 +01:00
_ed_sha512(seed, 32, private_key);
private_key[0] &= 248;
private_key[31] &= 63;
private_key[31] |= 64;
2013-01-21 22:28:34 +01:00
ge_scalarmult_base(&A, private_key);
ge_p3_tobytes(public_key, &A);
2013-01-12 00:54:40 +01:00
}