-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign.h
43 lines (34 loc) · 1.28 KB
/
sign.h
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
34
35
36
37
38
39
40
41
42
43
/*
* Implementors: EagleSign Team
* This implementation is highly inspired from Dilithium and
* Falcon Signatures' implementations
*/
#ifndef SIGN_H
#define SIGN_H
#include <stddef.h>
#include <stdint.h>
#include "params.h"
#include "polyvec.h"
#include "poly.h"
#define challenge EAGLESIGN_NAMESPACE(challenge)
void challenge(poly *c, const uint8_t seed[SEEDBYTES]);
#define crypto_sign_keypair EAGLESIGN_NAMESPACE(keypair)
int crypto_sign_keypair(uint8_t *pk, uint8_t *sk);
#define crypto_sign_signature EAGLESIGN_NAMESPACE(signature)
int crypto_sign_signature(uint8_t *sig, size_t *siglen,
const uint8_t *m, size_t mlen,
const uint8_t *sk);
#define crypto_sign EAGLESIGN_NAMESPACETOP
int crypto_sign(uint8_t *sm, size_t *smlen,
const uint8_t *m, size_t mlen,
const uint8_t *sk);
#define crypto_sign_verify EAGLESIGN_NAMESPACE(verify)
int crypto_sign_verify(const uint8_t *sig, size_t siglen,
const uint8_t *m, size_t mlen,
const uint8_t *pk);
#define crypto_sign_open EAGLESIGN_NAMESPACE(open)
int crypto_sign_open(uint8_t *m, size_t *mlen,
const uint8_t *sm,
size_t smlen,
const uint8_t *pk);
#endif