Remove dead code in bn
[openssl.git] / crypto / include / internal / bn_int.h
1 /*
2  * Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef HEADER_BN_INT_H
11 # define HEADER_BN_INT_H
12
13 # include <openssl/bn.h>
14 # include <limits.h>
15
16 #ifdef  __cplusplus
17 extern "C" {
18 #endif
19
20 BIGNUM *bn_wexpand(BIGNUM *a, int words);
21 BIGNUM *bn_expand2(BIGNUM *a, int words);
22
23 void bn_correct_top(BIGNUM *a);
24
25 /*
26  * Determine the modified width-(w+1) Non-Adjacent Form (wNAF) of 'scalar'.
27  * This is an array r[] of values that are either zero or odd with an
28  * absolute value less than 2^w satisfying scalar = \sum_j r[j]*2^j where at
29  * most one of any w+1 consecutive digits is non-zero with the exception that
30  * the most significant digit may be only w-1 zeros away from that next
31  * non-zero digit.
32  */
33 signed char *bn_compute_wNAF(const BIGNUM *scalar, int w, size_t *ret_len);
34
35 int bn_get_top(const BIGNUM *a);
36
37 int bn_get_dmax(const BIGNUM *a);
38
39 /* Set all words to zero */
40 void bn_set_all_zero(BIGNUM *a);
41
42 /*
43  * Copy the internal BIGNUM words into out which holds size elements (and size
44  * must be bigger than top)
45  */
46 int bn_copy_words(BN_ULONG *out, const BIGNUM *in, int size);
47
48 BN_ULONG *bn_get_words(const BIGNUM *a);
49
50 /*
51  * Set the internal data words in a to point to words which contains size
52  * elements. The BN_FLG_STATIC_DATA flag is set
53  */
54 void bn_set_static_words(BIGNUM *a, BN_ULONG *words, int size);
55
56 /*
57  * Copy words into the BIGNUM |a|, reallocating space as necessary.
58  * The negative flag of |a| is not modified.
59  * Returns 1 on success and 0 on failure.
60  */
61 /*
62  * |num_words| is int because bn_expand2 takes an int. This is an internal
63  * function so we simply trust callers not to pass negative values.
64  */
65 int bn_set_words(BIGNUM *a, BN_ULONG *words, int num_words);
66
67 #ifdef  __cplusplus
68 }
69 #endif
70
71 #endif