Line | Count | Source (jump to first uncovered line) |
1 | | /* shake256.c |
2 | | |
3 | | The SHAKE256 hash function, arbitrary length output. |
4 | | |
5 | | Copyright (C) 2017 Daiki Ueno |
6 | | Copyright (C) 2017 Red Hat, Inc. |
7 | | |
8 | | This file is part of GNU Nettle. |
9 | | |
10 | | GNU Nettle is free software: you can redistribute it and/or |
11 | | modify it under the terms of either: |
12 | | |
13 | | * the GNU Lesser General Public License as published by the Free |
14 | | Software Foundation; either version 3 of the License, or (at your |
15 | | option) any later version. |
16 | | |
17 | | or |
18 | | |
19 | | * the GNU General Public License as published by the Free |
20 | | Software Foundation; either version 2 of the License, or (at your |
21 | | option) any later version. |
22 | | |
23 | | or both in parallel, as here. |
24 | | |
25 | | GNU Nettle is distributed in the hope that it will be useful, |
26 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
27 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
28 | | General Public License for more details. |
29 | | |
30 | | You should have received copies of the GNU General Public License and |
31 | | the GNU Lesser General Public License along with this program. If |
32 | | not, see http://www.gnu.org/licenses/. |
33 | | */ |
34 | | |
35 | | #if HAVE_CONFIG_H |
36 | | # include "config.h" |
37 | | #endif |
38 | | |
39 | | #include "sha3.h" |
40 | | #include "sha3-internal.h" |
41 | | |
42 | | void |
43 | | sha3_256_shake (struct sha3_256_ctx *ctx, |
44 | | size_t length, uint8_t *dst) |
45 | 0 | { |
46 | 0 | _nettle_sha3_shake (&ctx->state, sizeof (ctx->block), ctx->block, ctx->index, length, dst); |
47 | 0 | sha3_256_init (ctx); |
48 | 0 | } |
49 | | |
50 | | void |
51 | | sha3_256_shake_output (struct sha3_256_ctx *ctx, |
52 | | size_t length, uint8_t *digest) |
53 | 0 | { |
54 | 0 | ctx->index = |
55 | 0 | _nettle_sha3_shake_output (&ctx->state, |
56 | 0 | sizeof (ctx->block), ctx->block, ctx->index, |
57 | 0 | length, digest); |
58 | 0 | } |