]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/crypto/BN_zero.pod
Backwards-compatibility subject to OPENSSL_API_COMPAT
[thirdparty/openssl.git] / doc / crypto / BN_zero.pod
CommitLineData
dd8dec69
UM
1=pod
2
3=head1 NAME
4
e1b78bc6
RL
5BN_zero, BN_one, BN_value_one, BN_set_word, BN_get_word - BIGNUM assignment
6operations
dd8dec69
UM
7
8=head1 SYNOPSIS
9
10 #include <openssl/bn.h>
11
98186eb4 12 void BN_zero(BIGNUM *a);
dd8dec69
UM
13 int BN_one(BIGNUM *a);
14
98499135 15 const BIGNUM *BN_value_one(void);
dd8dec69
UM
16
17 int BN_set_word(BIGNUM *a, unsigned long w);
18 unsigned long BN_get_word(BIGNUM *a);
19
98186eb4
VD
20Deprecated:
21
22 #if OPENSSL_API_COMPAT < 0x00908000L
23 int BN_zero(BIGNUM *a);
24 #endif
25
dd8dec69
UM
26=head1 DESCRIPTION
27
28BN_zero(), BN_one() and BN_set_word() set B<a> to the values 0, 1 and
29B<w> respectively. BN_zero() and BN_one() are macros.
30
31BN_value_one() returns a B<BIGNUM> constant of value 1. This constant
32is useful for use in comparisons and assignment.
33
34BN_get_word() returns B<a>, if it can be represented as an unsigned
35long.
36
37=head1 RETURN VALUES
38
39BN_get_word() returns the value B<a>, and 0xffffffffL if B<a> cannot
40be represented as an unsigned long.
41
98186eb4
VD
42BN_one(), BN_set_word() and the deprecated version of BN_zero()
43return 1 on success, 0 otherwise.
dd8dec69 44BN_value_one() returns the constant.
98186eb4 45The preferred version of BN_zer() never fails and returns no value.
dd8dec69
UM
46
47=head1 BUGS
48
49Someone might change the constant.
50
15701211
DSH
51If a B<BIGNUM> is equal to 0xffffffffL it can be represented as an
52unsigned long but this value is also returned on error.
53
dd8dec69
UM
54=head1 SEE ALSO
55
9b86974e 56L<bn(3)>, L<BN_bn2bin(3)>
dd8dec69 57
dd8dec69 58=cut