-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathecs_lib.c
45 lines (34 loc) · 833 Bytes
/
ecs_lib.c
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
44
45
/*
* ecs_lib.c
*
* Created on: Nov 20, 2015
* Author: tslld
*/
#include "ecdsa.h"
#include "ec.h"
#include "ec_point.h"
#include "field_ops.h"
/** Get/Set the value r of the signature
* \param P pointer to an ec_point structure
* \param X BIG number, field characteristic
* required to be initialized
* \return X-coordinate of P
*/
void ecs_get_r(ecdsa_sig sig, mpz_t R) {
mpz_set(R, sig->r);
}
void ecs_set_r(ecdsa_sig sig, mpz_t R) {
mpz_set(sig->r, R);
}
/** Get/Set the value r of the signature
* \param P pointer to an ec_point structure
* \param X BIG number, field characteristic
* required to be initialized
* \return X-coordinate of P
*/
void ecs_get_s(ecdsa_sig sig, mpz_t S) {
mpz_set(S, sig->s);
}
void ecs_set_s(ecdsa_sig sig, mpz_t S) {
mpz_set(sig->s, S);
}