1 .\" $OpenBSD: BN_bn2bin.3,v 1.6 2017/01/25 16:12:45 schwarze Exp $
2 .\" OpenSSL a528d4f0 Oct 27 13:40:11 2015 -0400
4 .\" This file was written by Ulf Moeller <ulf@openssl.org>.
5 .\" Copyright (c) 2000, 2002, 2016 The OpenSSL Project. All rights reserved.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\" notice, this list of conditions and the following disclaimer in
16 .\" the documentation and/or other materials provided with the
19 .\" 3. All advertising materials mentioning features or use of this
20 .\" software must display the following acknowledgment:
21 .\" "This product includes software developed by the OpenSSL Project
22 .\" for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
24 .\" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25 .\" endorse or promote products derived from this software without
26 .\" prior written permission. For written permission, please contact
27 .\" openssl-core@openssl.org.
29 .\" 5. Products derived from this software may not be called "OpenSSL"
30 .\" nor may "OpenSSL" appear in their names without prior written
31 .\" permission of the OpenSSL Project.
33 .\" 6. Redistributions of any form whatsoever must retain the following
35 .\" "This product includes software developed by the OpenSSL Project
36 .\" for use in the OpenSSL Toolkit (http://www.openssl.org/)"
38 .\" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39 .\" EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
42 .\" ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49 .\" OF THE POSSIBILITY OF SUCH DAMAGE.
51 .Dd $Mdocdate: January 25 2017 $
66 .Nd format conversions
72 .Fa "unsigned char *to"
76 .Fa "const unsigned char *s"
101 .Fa "const char *str"
106 .Fa "const BIGNUM *a"
111 .Fa "const BIGNUM *a"
115 .Fa "const BIGNUM *a"
116 .Fa "unsigned char *to"
120 .Fa "unsigned char *s"
126 converts the absolute value of
128 into big-endian form and stores it at
136 converts the positive integer in big-endian form of length
155 return printable strings containing the hexadecimal and decimal encoding of
158 For negative numbers, the string is prefaced with a leading minus sign.
159 The string must be freed later using
165 as a hexadecimal number.
166 The string may start with a minus sign
168 Conversion stops at the first byte that is not a hexadecimal digit.
169 The number is converted to a
184 it only computes the number's length in hexadecimal digits.
185 A "negative zero" is converted to zero.
187 is the same using the decimal system.
189 infers the number base from an optional prefix.
200 If the number is negative, the minus sign can be given before or
206 write the hexadecimal encoding of
208 with a leading minus sign for negative numbers, to the
219 from and to a format that consists of the number's length in bytes
220 represented as a 4-byte big-endian number, and the number itself in
221 big-endian format, where the most significant bit signals a negative
222 number (the representation of numbers with the MSB set is prefixed with
226 stores the representation of
232 must be large enough to hold the result.
233 The size can be determined by calling
234 .Fn BN_bn2mpi a NULL .
239 bytes long representation at
245 or in a newly allocated
253 returns the length of the big-endian number placed at
265 return a NUL-terminated string, or
271 return the number's length in hexadecimal or decimal digits
272 or 0 on error, in which case no new
276 returns 1 on success or 0 on error, in which case no new
283 return 1 on success, 0 on write errors.
286 returns the length of the representation.
294 The error codes can be obtained by
295 .Xr ERR_get_error 3 .
307 are available in all versions of SSLeay and OpenSSL.
316 were added in SSLeay 0.9.0.