Lines Matching +full:90 +full:h
11 * Implementation of SP 800-90B section 4.4 Approved Continuous Health Tests.
14 #include <string.h>
15 #include <openssl/evp.h>
16 #include <openssl/core_dispatch.h>
17 #include <openssl/params.h>
18 #include <openssl/self_test.h>
19 #include <openssl/proverr.h>
20 #include "prov/providercommon.h"
21 #include "prov/provider_ctx.h"
22 #include "prov/implementations.h"
23 #include "internal/cryptlib.h"
24 #include "crypto/rand_pool.h"
25 #include "drbg_local.h"
26 #include "prov/seeding.h"
27 #include "crypto/context.h"
56 /* State for SP 800-90B 4.4.1 Repetition Count Test */
62 /* State for SP 800-90B 4.4.2 Adaptive Proportion Test */
105 * Implementation of SP 800-90B section 4.4.1: Repetition Count Test
112 * C = 1 + \left\lceil\frac{-log_2 \alpha}H\right\rceil in RCT_test()
114 * where alpha = 2^-20 and H is the expected entropy per sample. in RCT_test()
117 41, /* H = 0.5 */ in RCT_test()
118 21, 11, 8, 6, 5, 5, 4, 4 /* H = 1, ..., 8 */ in RCT_test()
130 * Implementation of SP 800-90B section 4.4.2: Adaptive Proportion Test
136 * distribution with n = 512, p = 2^-H at a critical threshold of in APT_test()
137 * 2^-20. H being the expected entropy per sample. Refer SP 800-90B in APT_test()
141 410, /* H = 0.5 */ in APT_test()
142 311, 177, 103, 62, 39, 25, 18, 13 /* H = 1, ..., 8 */ in APT_test()