1BN_NEW(3) OpenSSL BN_NEW(3)
2
3
4
6 BN_new, BN_secure_new, BN_clear, BN_free, BN_clear_free - allocate and
7 free BIGNUMs
8
10 #include <openssl/bn.h>
11
12 BIGNUM *BN_new(void);
13
14 BIGNUM *BN_secure_new(void);
15
16 void BN_clear(BIGNUM *a);
17
18 void BN_free(BIGNUM *a);
19
20 void BN_clear_free(BIGNUM *a);
21
23 BN_new() allocates and initializes a BIGNUM structure. BN_secure_new()
24 does the same except that the secure heap OPENSSL_secure_malloc(3) is
25 used to store the value.
26
27 BN_clear() is used to destroy sensitive data such as keys when they are
28 no longer needed. It erases the memory used by a and sets it to the
29 value 0. If a is NULL, nothing is done.
30
31 BN_free() frees the components of the BIGNUM, and if it was created by
32 BN_new(), also the structure itself. BN_clear_free() additionally
33 overwrites the data before the memory is returned to the system. If a
34 is NULL, nothing is done.
35
37 BN_new() and BN_secure_new() return a pointer to the BIGNUM initialised
38 to the value 0. If the allocation fails, they return NULL and set an
39 error code that can be obtained by ERR_get_error(3).
40
41 BN_clear(), BN_free() and BN_clear_free() have no return values.
42
44 ERR_get_error(3), OPENSSL_secure_malloc(3)
45
47 BN_init() was removed in OpenSSL 1.1.0; use BN_new() instead.
48
50 Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
51
52 Licensed under the OpenSSL license (the "License"). You may not use
53 this file except in compliance with the License. You can obtain a copy
54 in the file LICENSE in the source distribution or at
55 <https://www.openssl.org/source/license.html>.
56
57
58
591.1.1i 2021-07-22 BN_NEW(3)