summaryrefslogtreecommitdiff
path: root/src/libsodium/crypto_sign/ed25519/ref10/keypair.c
blob: 79556472bd0e42ab3c0c5a531d16ba4c2860ba69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#include <string.h>

#include "api.h"
#include "randombytes.h"
#include "crypto_hash_sha512.h"
#include "ge.h"

int crypto_sign_seed_keypair(unsigned char *pk, unsigned char *sk,
                             const unsigned char *seed)
{
    ge_p3 A;

    crypto_hash_sha512(sk,seed,32);
    sk[0] &= 248;
    sk[31] &= 63;
    sk[31] |= 64;

    ge_scalarmult_base(&A,sk);
    ge_p3_tobytes(pk,&A);

    memmove(sk, seed, 32);
    memmove(sk + 32, pk, 32);
    return 0;
}

int crypto_sign_keypair(unsigned char *pk, unsigned char *sk)
{
    unsigned char seed[32];

    randombytes(seed,32);
    return crypto_sign_seed_keypair(pk,sk,seed);
}