]> git.cryptolib.org Git - avr-crypto-lib.git/blob - ecdsa/ecdsa_sign.c
bd5ff9097466cb8e950ae231ab5e6404c7b39eaf
[avr-crypto-lib.git] / ecdsa / ecdsa_sign.c
1 /* ecdsa.c */
2 /*
3     This file is part of the AVR-Crypto-Lib.
4     Copyright (C) 2006-2012 Daniel Otte (daniel.otte@rub.de)
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 #include <stdlib.h>
22 #include <inttypes.h>
23 #include <string.h>
24 #include "bigint.h"
25 #include "ecc.h"
26 #include "random_dummy.h"
27 #include "ecdsa.h"
28 #include "hfal-basic.h"
29
30 #include <stdio.h>
31 #include "bigint_io.h"
32
33
34 uint8_t ecdsa_signature_alloc(ecdsa_signature_t *s, size_t length_B){
35     if(!(s->r.wordv = malloc(length_B))){
36         printf_P(PSTR("DBG: XXX <%S %s %d>\n"), PSTR(__FILE__), __func__, __LINE__);
37         return 1;
38     }
39     if(!(s->s.wordv = malloc(length_B))){
40         printf_P(PSTR("DBG: XXX <%S %s %d>\n"), PSTR(__FILE__), __func__, __LINE__);
41         free(s->r.wordv);
42         return 1;
43     }
44     bigint_set_zero(&s->r);
45     bigint_set_zero(&s->s);
46     return 0;
47 }
48
49 void ecdsa_signature_free(ecdsa_signature_t *s){
50     free(s->r.wordv);
51     free(s->s.wordv);
52 }
53
54 uint8_t ecdsa_sign_bigint(ecdsa_signature_t *s, const bigint_t *m,
55                           const ecdsa_ctx_t *ctx, const bigint_t *k){
56
57     bigint_t t;
58     ecc_combi_point_t q;
59
60
61     if(!(t.wordv = malloc(ctx->curve->p->length_W * 2 * sizeof(bigint_word_t)))){
62         printf_P(PSTR("DBG: XXX <%S %s %d>\n"), PSTR(__FILE__), __func__, __LINE__);
63         return 1;
64     }
65     t.info = 0;
66     if(ecc_chudnovsky_point_alloc(&q.chudnovsky, ctx->curve->p->length_W * sizeof(bigint_word_t))){
67         free(t.wordv);
68         printf_P(PSTR("item size: %u bytes\n"), ctx->curve->p->length_W * sizeof(bigint_word_t));
69         printf_P(PSTR("DBG: XXX <%S %s %d>\n"), PSTR(__FILE__), __func__, __LINE__);
70         return 1;
71     }
72
73     ecc_chudnovsky_multiplication(&q.chudnovsky, k, ctx->basepoint, ctx->curve);
74     if(q.chudnovsky.x.length_W == 0){
75         printf_P(PSTR("DBG: XXX <%S %s %d>\n"), PSTR(__FILE__), __func__, __LINE__);
76         return 2;
77     }
78     ecc_chudnovsky_to_affine_point(&q.affine, &q.chudnovsky, ctx->curve);
79     bigint_inverse(&s->s, k, ctx->curve->n);
80
81     bigint_mul_u(&t, &q.affine.x, ctx->priv);
82     bigint_reduce(&t, ctx->curve->n);
83     bigint_add_u(&t, &t, m);
84     bigint_reduce(&t, ctx->curve->n);
85     bigint_mul_u(&t, &t, &s->s);
86     bigint_reduce(&t, ctx->curve->n);
87     if(t.length_W == 0){
88         printf_P(PSTR("DBG: XXX <%S %s %d>\n"), PSTR(__FILE__), __func__, __LINE__);
89         return 2;
90     }
91     bigint_copy(&s->r, &q.affine.x);
92     bigint_copy(&s->s, &t);
93
94     ecc_chudnovsky_point_free(&q.chudnovsky);
95     free(t.wordv);
96
97     return 0;
98 }
99
100 uint8_t ecdsa_sign_hash(ecdsa_signature_t *s, const void *hash,
101                            size_t hash_len_B, const ecdsa_ctx_t *ctx,
102                            const void *rand_in){
103     bigint_t m_int;
104     bigint_t r_int;
105     size_t idx = 0;
106     uint8_t r;
107
108     r_int.length_W = ctx->curve->p->length_W;
109
110     if(rand_in == NULL){
111         if(!(r_int.wordv = malloc(ctx->curve->p->length_W * sizeof(bigint_word_t)))){
112             return 1;
113         }
114     }else{
115         r_int.wordv = (bigint_word_t*)rand_in;
116         r_int.info = 0;
117         bigint_adjust(&r_int);
118     }
119
120     m_int.length_W = ctx->curve->p->length_W;
121     m_int.wordv = malloc(m_int.length_W *  sizeof(bigint_word_t));
122     if(m_int.wordv == NULL){
123         free(r_int.wordv);
124         return 1;
125     }
126     m_int.wordv[m_int.length_W - 1] = 0;
127
128     if(hash_len_B > m_int.length_W * sizeof(bigint_word_t)){
129         while(idx < m_int.length_W * sizeof(bigint_word_t)){
130             ((uint8_t*)m_int.wordv)[idx] = ((uint8_t*)hash)[m_int.length_W * sizeof(bigint_word_t) - idx - 1];
131             ++idx;
132         }
133     }else{
134         memset(m_int.wordv, 0, m_int.length_W * sizeof(bigint_word_t));
135         // idx += m_int.length_W * sizeof(bigint_word_t) - hash_len_B;
136         while(hash_len_B){
137             ((uint8_t*)m_int.wordv)[idx++] = ((uint8_t*)hash)[--hash_len_B];
138         }
139     }
140     bigint_adjust(&m_int);
141     do{
142         if(rand_in == NULL){
143             size_t i;
144             do{
145                 i = ctx->curve->p->length_W * sizeof(bigint_word_t) - 1;
146                 do{
147                     ((uint8_t*)r_int.wordv)[i] = prng_get_byte();
148                 }while(i--);
149                 bigint_adjust(&r_int);
150             }while(bigint_cmp_u(&r_int, ctx->curve->p) >= 0);
151         }
152     }while((r = ecdsa_sign_bigint(s, &m_int, ctx, &r_int)) == 2 && (rand_in == NULL));
153
154     free(m_int.wordv);
155
156     return r;
157 }
158
159 uint8_t ecdsa_sign_message(ecdsa_signature_t *s, const void *m, uint16_t m_len_b,
160                        const hfdesc_t *hash_desc, const ecdsa_ctx_t *ctx,
161                        const void *rand_in){
162
163     uint8_t *hash;
164     uint16_t hash_len = hfal_hash_getHashsize(hash_desc) / 8;
165     uint8_t r;
166
167
168     hash = malloc(hash_len);
169     if(hash == NULL){
170         return 1;
171     }
172     hfal_hash_mem(hash_desc, hash, m, m_len_b);
173     ecdsa_sign_hash(s, hash, hash_len, ctx, rand_in);
174
175     return r;
176 }