BN_new.pod 1.4 KB
Newer Older
U
Ulf Möller 已提交
1 2 3 4
=pod

=head1 NAME

R
Rich Salz 已提交
5
BN_new, BN_clear, BN_free, BN_clear_free - allocate and free BIGNUMs
U
Ulf Möller 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

=head1 SYNOPSIS

 #include <openssl/bn.h>

 BIGNUM *BN_new(void);

 void BN_clear(BIGNUM *a);

 void BN_free(BIGNUM *a);

 void BN_clear_free(BIGNUM *a);

=head1 DESCRIPTION

21
BN_new() allocates and initializes a B<BIGNUM> structure.
U
Ulf Möller 已提交
22 23 24 25 26 27 28 29

BN_clear() is used to destroy sensitive data such as keys when they
are no longer needed. It erases the memory used by B<a> and sets it
to the value 0.

BN_free() frees the components of the B<BIGNUM>, and if it was created
by BN_new(), also the structure itself. BN_clear_free() additionally
overwrites the data before the memory is returned to the system.
R
Rich Salz 已提交
30
If B<a> is NULL, nothing is done.
U
Ulf Möller 已提交
31 32 33 34 35

=head1 RETURN VALUES

BN_new() returns a pointer to the B<BIGNUM>. If the allocation fails,
it returns B<NULL> and sets an error code that can be obtained
R
Rich Salz 已提交
36
by L<ERR_get_error(3)>.
U
Ulf Möller 已提交
37

38 39
BN_clear(), BN_free() and BN_clear_free() have no return values.

U
Ulf Möller 已提交
40 41
=head1 SEE ALSO

R
Rich Salz 已提交
42
L<bn(3)>, L<ERR_get_error(3)>
U
Ulf Möller 已提交
43 44 45

=head1 HISTORY

R
Rich Salz 已提交
46
BN_init() was removed in OpenSSL 1.1.0; use BN_new() instead.
U
Ulf Möller 已提交
47 48

=cut
R
Rich Salz 已提交
49 50 51 52 53 54 55 56 57 58 59

=head1 COPYRIGHT

Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the OpenSSL license (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut