8f97ac00bec61f6f33b5d80191261d7aa3d79786
[openssl.git] / fips / rand / fips_rand_lcl.h
1 /* fips/rand/fips_rand_lcl.h */
2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3  * project.
4  */
5 /* ====================================================================
6  * Copyright (c) 2011 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  */
53
54 typedef struct drbg_hash_ctx_st DRBG_HASH_CTX;
55 typedef struct drbg_ctr_ctx_st DRBG_CTR_CTX;
56
57 /* 888 bits from 10.1 table 2 */
58 #define HASH_PRNG_MAX_SEEDLEN   111
59
60 struct drbg_hash_ctx_st
61         {
62         const EVP_MD *md;
63         EVP_MD_CTX mctx;
64         unsigned char V[HASH_PRNG_MAX_SEEDLEN];
65         unsigned char C[HASH_PRNG_MAX_SEEDLEN];
66         /* Temporary value storage: should always exceed max digest length */
67         unsigned char vtmp[HASH_PRNG_MAX_SEEDLEN];
68         };
69
70 struct drbg_ctr_ctx_st
71         {
72         AES_KEY ks;
73         size_t keylen;
74         unsigned char K[32];
75         unsigned char V[16];
76         /* Temp variables used by derivation function */
77         AES_KEY df_ks;
78         AES_KEY df_kxks;
79         /* Temporary block storage used by ctr_df */
80         unsigned char bltmp[16];
81         size_t bltmp_pos;
82         unsigned char KX[48];
83         };
84
85 /* DRBG flags */
86
87 /* PRNG is in test state */
88 #define DRBG_FLAG_TEST                  0x2
89 /* Functions shouldn't call err library */
90 #define DRBG_FLAG_NOERR                 0x4
91
92 /* DRBG status values */
93 /* not initialised */
94 #define DRBG_STATUS_UNINITIALISED       0
95 /* ok and ready to generate random bits */
96 #define DRBG_STATUS_READY               1
97 /* reseed required */
98 #define DRBG_STATUS_RESEED              2
99 /* fatal error condition */
100 #define DRBG_STATUS_ERROR               3
101
102 /* Maximum values for temp entropy and nonce */
103 #define DRBG_MAX_ENTROPY                1024
104 #define DRBG_MAX_NONCE                  1024
105
106 /* A default maximum length: larger than any reasonable value used in pratice */
107
108 #define DRBG_MAX_LENGTH                 0x7ffffff0
109
110 /* DRBG context structure */
111
112 struct drbg_ctx_st
113         {
114         /* First types common to all implementations */
115         /* DRBG type: a NID for the underlying algorithm */
116         int type;
117         /* Various flags */
118         unsigned int flags;
119
120         /* The following parameters are setup by mechanism drbg_init() call */
121         int strength;
122         size_t blocklength;
123         size_t max_request;
124
125         size_t min_entropy, max_entropy;
126         size_t min_nonce, max_nonce;
127         size_t max_pers, max_adin;
128         unsigned int reseed_counter;
129         unsigned int reseed_interval;
130         size_t seedlen;
131         int status;
132         /* Application data: typically used by test get_entropy */
133         void *app_data;
134         /* Implementation specific structures */
135         union 
136                 {
137                 DRBG_HASH_CTX hash;
138                 DRBG_CTR_CTX  ctr;
139                 } d;
140         /* Initialiase PRNG and setup callbacks below */
141         int (*init)(DRBG_CTX *ctx, int nid, int security, unsigned int flags);
142         /* Intantiate PRNG */
143         int (*instantiate)(DRBG_CTX *ctx,
144                                 const unsigned char *ent, size_t entlen,
145                                 const unsigned char *nonce, size_t noncelen,
146                                 const unsigned char *pers, size_t perslen);
147         /* reseed */
148         int (*reseed)(DRBG_CTX *ctx,
149                                 const unsigned char *ent, size_t entlen,
150                                 const unsigned char *adin, size_t adinlen);
151         /* generat output */
152         int (*generate)(DRBG_CTX *ctx,
153                                 unsigned char *out, size_t outlen,
154                                 const unsigned char *adin, size_t adinlen);
155         /* uninstantiate */
156         int (*uninstantiate)(DRBG_CTX *ctx);
157
158         unsigned char entropy[DRBG_MAX_ENTROPY];
159
160         /* entropy gathering function */
161         size_t (*get_entropy)(DRBG_CTX *ctx, unsigned char *out,
162                                 int entropy, size_t min_len, size_t max_len);
163
164         unsigned char nonce[DRBG_MAX_NONCE];
165
166         /* nonce gathering function */
167         size_t (*get_nonce)(DRBG_CTX *ctx, unsigned char *out,
168                                 int entropy, size_t min_len, size_t max_len);
169
170         /* Continuous random number test temporary area */
171         /* Last block */        
172         unsigned char lb[16];
173         /* set if lb is valid */
174         int lb_valid;
175
176         };
177
178
179 int fips_drbg_ctr_init(DRBG_CTX *dctx);
180 int fips_drbg_hash_init(DRBG_CTX *dctx);
181 int fips_drbg_kat(DRBG_CTX *dctx, int nid, unsigned int flags);