]> git.ipfire.org Git - thirdparty/nettle.git/blob - dsa-sign.c
Avoid warnings for assert_maybe.
[thirdparty/nettle.git] / dsa-sign.c
1 /* dsa-sign.c
2
3 The DSA publickey algorithm.
4
5 Copyright (C) 2002, 2010 Niels Möller
6
7 This file is part of GNU Nettle.
8
9 GNU Nettle is free software: you can redistribute it and/or
10 modify it under the terms of either:
11
12 * the GNU Lesser General Public License as published by the Free
13 Software Foundation; either version 3 of the License, or (at your
14 option) any later version.
15
16 or
17
18 * the GNU General Public License as published by the Free
19 Software Foundation; either version 2 of the License, or (at your
20 option) any later version.
21
22 or both in parallel, as here.
23
24 GNU Nettle is distributed in the hope that it will be useful,
25 but WITHOUT ANY WARRANTY; without even the implied warranty of
26 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 General Public License for more details.
28
29 You should have received copies of the GNU General Public License and
30 the GNU Lesser General Public License along with this program. If
31 not, see http://www.gnu.org/licenses/.
32 */
33
34 #if HAVE_CONFIG_H
35 # include "config.h"
36 #endif
37
38 #include <assert.h>
39 #include <stdlib.h>
40
41 #include "dsa.h"
42 #include "dsa-internal.h"
43
44 #include "bignum.h"
45
46
47 int
48 dsa_sign(const struct dsa_params *params,
49 const mpz_t x,
50 void *random_ctx, nettle_random_func *random,
51 size_t digest_size,
52 const uint8_t *digest,
53 struct dsa_signature *signature)
54 {
55 mpz_t k;
56 mpz_t h;
57 mpz_t tmp;
58 int res;
59
60 /* Check that p is odd, so that invalid keys don't result in a crash
61 inside mpz_powm_sec. */
62 if (mpz_even_p (params->p))
63 return 0;
64
65 /* Select k, 0<k<q, randomly */
66 mpz_init_set(tmp, params->q);
67 mpz_sub_ui(tmp, tmp, 1);
68
69 mpz_init(k);
70 nettle_mpz_random(k, random_ctx, random, tmp);
71 mpz_add_ui(k, k, 1);
72
73 /* Compute r = (g^k (mod p)) (mod q) */
74 mpz_powm_sec(tmp, params->g, k, params->p);
75 mpz_fdiv_r(signature->r, tmp, params->q);
76
77 /* Compute hash */
78 mpz_init(h);
79 _nettle_dsa_hash (h, mpz_sizeinbase(params->q, 2), digest_size, digest);
80
81 /* Compute k^-1 (mod q) */
82 if (mpz_invert(k, k, params->q))
83 {
84 /* Compute signature s = k^-1 (h + xr) (mod q) */
85 mpz_mul(tmp, signature->r, x);
86 mpz_fdiv_r(tmp, tmp, params->q);
87 mpz_add(tmp, tmp, h);
88 mpz_mul(tmp, tmp, k);
89 mpz_fdiv_r(signature->s, tmp, params->q);
90 res = 1;
91 }
92 else
93 /* What do we do now? The key is invalid. */
94 res = 0;
95
96 mpz_clear(k);
97 mpz_clear(h);
98 mpz_clear(tmp);
99
100 return res;
101 }