forked from contrun/libecc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathecdsa.h
84 lines (67 loc) · 2.19 KB
/
ecdsa.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
* Copyright (C) 2017 - This file is part of libecc project
*
* Authors:
* Ryad BENADJILA <[email protected]>
* Arnaud EBALARD <[email protected]>
* Jean-Pierre FLORI <[email protected]>
*
* Contributors:
* Nicolas VIVET <[email protected]>
* Karim KHALFALLAH <[email protected]>
*
* This software is licensed under a dual BSD and GPL v2 license.
* See LICENSE file at the root folder of the project.
*/
#include "../lib_ecc_config.h"
#include "../lib_ecc_types.h"
#ifdef WITH_SIG_ECDSA
#ifndef __ECDSA_H__
#define __ECDSA_H__
#include "../words/words.h"
#include "ec_key.h"
#include "../hash/hash_algs.h"
#include "../curves/curves.h"
#include "../utils/utils.h"
#define ECDSA_R_LEN(q_bit_len) (BYTECEIL(q_bit_len))
#define ECDSA_S_LEN(q_bit_len) (BYTECEIL(q_bit_len))
#define ECDSA_SIGLEN(q_bit_len) (ECDSA_R_LEN(q_bit_len) + \
ECDSA_S_LEN(q_bit_len))
#define ECDSA_MAX_SIGLEN ECDSA_SIGLEN(CURVES_MAX_Q_BIT_LEN)
/*
* Compute max signature length for all the mechanisms enabled
* in the library (see lib_ecc_config.h). Having that done during
* preprocessing sadly requires some verbosity.
*/
#ifndef EC_MAX_SIGLEN
#define EC_MAX_SIGLEN 0
#endif
#if ((EC_MAX_SIGLEN) < (ECDSA_MAX_SIGLEN))
#undef EC_MAX_SIGLEN
#define EC_MAX_SIGLEN ECDSA_MAX_SIGLEN
#endif
typedef struct {
hash_context h_ctx;
word_t magic;
} ecdsa_sign_data;
struct ec_sign_context;
void ecdsa_init_pub_key(ec_pub_key *out_pub, ec_priv_key *in_priv);
u8 ecdsa_siglen(u16 p_bit_len, u16 q_bit_len, u8 hsize, u8 blocksize);
int _ecdsa_sign_init(struct ec_sign_context *ctx);
int _ecdsa_sign_update(struct ec_sign_context *ctx,
const u8 *chunk, u32 chunklen);
int _ecdsa_sign_finalize(struct ec_sign_context *ctx, u8 *sig, u8 siglen);
typedef struct {
nn r;
nn s;
hash_context h_ctx;
word_t magic;
} ecdsa_verify_data;
struct ec_verify_context;
int _ecdsa_verify_init(struct ec_verify_context *ctx,
const u8 *sig, u8 siglen);
int _ecdsa_verify_update(struct ec_verify_context *ctx,
const u8 *chunk, u32 chunklen);
int _ecdsa_verify_finalize(struct ec_verify_context *ctx);
#endif /* __ECDSA_H__ */
#endif /* WITH_SIG_ECDSA */