math/mpreduce.h: Missing include files.
[u/mdw/catacomb] / rand / fipstest.h
CommitLineData
44d4e7aa 1/* -*-c-*-
2 *
5d14574b 3 * FIPS140 randomness tests
44d4e7aa 4 *
5 * (c) 2000 Straylight/Edgeware
6 */
7
45c0fd36 8/*----- Licensing notice --------------------------------------------------*
44d4e7aa 9 *
10 * This file is part of Catacomb.
11 *
12 * Catacomb is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
45c0fd36 16 *
44d4e7aa 17 * Catacomb is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
45c0fd36 21 *
44d4e7aa 22 * You should have received a copy of the GNU Library General Public
23 * License along with Catacomb; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * MA 02111-1307, USA.
26 */
27
44d4e7aa 28#ifndef CATACOMB_FIPSTEST_H
29#define CATACOMB_FIPSTEST_H
30
31#ifdef __cplusplus
32 extern "C" {
33#endif
34
35/*----- Header files ------------------------------------------------------*/
36
37#include <mLib/bits.h>
38
39/*----- Magic numbers -----------------------------------------------------*/
40
41#define FIPSTEST_BUFSZ 2500
42
16efd15b 43#define FIPSTEST_OK 0u
44#define FIPSTEST_MONOBIT 1u
45#define FIPSTEST_POKER 2u
46#define FIPSTEST_RUNS 4u
47#define FIPSTEST_LONGRUNS 8u
44d4e7aa 48
49/*----- Functions provided ------------------------------------------------*/
50
51/* --- @fipstest@ --- *
52 *
53 * Arguments: @const octet *p@ = pointer to a buffer of @FIPSTEST_BUFSZ@
54 * bytes
55 *
56 * Returns: Zero if OK, or a bitmask of failed tests.
57 *
5d14574b 58 * Use: Performs the FIPS140 randomness tests on a block of data.
44d4e7aa 59 */
60
61extern unsigned fipstest(const octet */*p*/);
62
63/*----- That's all, folks -------------------------------------------------*/
64
65#ifdef __cplusplus
66 }
67#endif
68
69#endif