2018-04-24 18:15:56 +02:00
|
|
|
#include "../include/ed25519.h"
|
|
|
|
#include "../include/sha512.h"
|
|
|
|
#include "../include/ge.h"
|
2013-01-12 00:54:40 +01:00
|
|
|
|
|
|
|
|
2013-02-04 13:34:01 +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
|
|
|
|
2019-04-07 16:06:22 +02:00
|
|
|
_ed_sha512(seed, 32, private_key);
|
2013-02-04 13:34:01 +01:00
|
|
|
private_key[0] &= 248;
|
|
|
|
private_key[31] &= 63;
|
|
|
|
private_key[31] |= 64;
|
2013-01-21 22:28:34 +01:00
|
|
|
|
2013-02-04 13:34:01 +01:00
|
|
|
ge_scalarmult_base(&A, private_key);
|
|
|
|
ge_p3_tobytes(public_key, &A);
|
2013-01-12 00:54:40 +01:00
|
|
|
}
|