6 * The contents of this file are subject to the terms of the
7 * Common Development and Distribution License (the "License").
8 * You may not use this file except in compliance with the License.
10 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11 * or http://opensource.org/licenses/CDDL-1.0.
12 * See the License for the specific language governing permissions
13 * and limitations under the License.
15 * When distributing Covered Code, include this CDDL HEADER in each
16 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17 * If applicable, add the following below this CDDL HEADER, with the
18 * fields enclosed by brackets "[]" replaced with your own identifying
19 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright (C) 2009, 2010, Jorn Amundsen <jorn.amundsen@ntnu.no>
25 * Tweaked Edon-R implementation for SUPERCOP, based on NIST API.
27 * $Id: edonr.h 517 2013-02-17 20:34:39Z joern $
30 * Portions copyright (c) 2013, Saso Kiselkov, All rights reserved
41 #include <sys/types.h>
43 #include <stdint.h> /* uint32_t... */
44 #include <stdlib.h> /* size_t ... */
48 * EdonR allows to call EdonRUpdate() consecutively only if the total length
49 * of stored unprocessed data and the new supplied data is less than or equal
50 * to the BLOCK_SIZE on which the compression functions operates.
51 * Otherwise an assertion failure is invoked.
54 /* Specific algorithm definitions */
55 #define EdonR224_DIGEST_SIZE 28
56 #define EdonR224_BLOCK_SIZE 64
57 #define EdonR256_DIGEST_SIZE 32
58 #define EdonR256_BLOCK_SIZE 64
59 #define EdonR384_DIGEST_SIZE 48
60 #define EdonR384_BLOCK_SIZE 128
61 #define EdonR512_DIGEST_SIZE 64
62 #define EdonR512_BLOCK_SIZE 128
64 #define EdonR256_BLOCK_BITSIZE 512
65 #define EdonR512_BLOCK_BITSIZE 1024
68 uint32_t DoublePipe
[16];
69 uint8_t LastPart
[EdonR256_BLOCK_SIZE
* 2];
72 uint64_t DoublePipe
[16];
73 uint8_t LastPart
[EdonR512_BLOCK_SIZE
* 2];
79 /* + algorithm specific parameters */
81 uint64_t bits_processed
;
88 void EdonRInit(EdonRState
*state
, size_t hashbitlen
);
89 void EdonRUpdate(EdonRState
*state
, const uint8_t *data
, size_t databitlen
);
90 void EdonRFinal(EdonRState
*state
, uint8_t *hashval
);
91 void EdonRHash(size_t hashbitlen
, const uint8_t *data
, size_t databitlen
,
98 #endif /* _SYS_EDONR_H_ */