Constify X509_PUBKEY_get(), X509_PUBKEY_get0(), and X509_PUBKEY_get0_param()
[openssl.git] / doc / man3 / OPENSSL_hexchar2int.pod
1 =pod
2
3 =head1 NAME
4
5 OPENSSL_hexchar2int,
6 OPENSSL_hexstr2buf_ex, OPENSSL_hexstr2buf,
7 OPENSSL_buf2hexstr_ex, OPENSSL_buf2hexstr
8 - Hex encoding and decoding functions
9
10 =head1 SYNOPSIS
11
12  #include <openssl/crypto.h>
13
14  int OPENSSL_hexchar2int(unsigned char c);
15  int OPENSSL_hexstr2buf_ex(unsigned char *buf, size_t buf_n, long *buflen,
16                            const char *str);
17  unsigned char *OPENSSL_hexstr2buf(const char *str, long *len);
18  int OPENSSL_buf2hexstr_ex(char *str, size_t str_n, size_t *strlen,
19                            const unsigned char *buf, long buflen);
20  char *OPENSSL_buf2hexstr(const unsigned char *buf, long buflen);
21
22 =head1 DESCRIPTION
23
24 OPENSSL_hexchar2int() converts a hexadecimal character to its numeric
25 equivalent.
26
27 OPENSSL_hexstr2buf_ex() decodes the hex string B<str> and places the
28 resulting string of bytes in the given I<buf>.
29 I<buf_n> gives the size of the buffer.
30 If I<buflen> is not NULL, it is filled in with the result length.
31 To find out how large the result will be, call this function with NULL
32 for I<buf>.
33 Colons between two-character hex "bytes" are accepted and ignored.
34 An odd number of hex digits is an error.
35
36 OPENSSL_hexstr2buf() does the same thing as OPENSSL_hexstr2buf_ex(),
37 but allocates the space for the result, and returns the result.
38 The memory is allocated by calling OPENSSL_malloc() and should be
39 released by calling OPENSSL_free().
40
41 OPENSSL_buf2hexstr_ex() encodes the contents of the given I<buf> with
42 length I<buflen> and places the resulting hexadecimal character string
43 in the given I<str>.
44 I<str_n> gives the size of the of the string buffer.
45 If I<strlen> is not NULL, it is filled in with the result length.
46 To find out how large the result will be, call this function with NULL
47 for I<str>.
48
49 OPENSSL_buf2hexstr() does the same thing as OPENSSL_buf2hexstr_ex(),
50 but allocates the space for the result, and returns the result.
51 The memory is allocated by calling OPENSSL_malloc() and should be
52 released by calling OPENSSL_free().
53
54 =head1 RETURN VALUES
55
56 OPENSSL_hexchar2int returns the value of a decoded hex character,
57 or -1 on error.
58
59 OPENSSL_buf2hexstr() and OPENSSL_hexstr2buf()
60 return a pointer to allocated memory, or NULL on error.
61
62 OPENSSL_buf2hexstr_ex() and OPENSSL_hexstr2buf_ex() return 1 on
63 success, or 0 on error.
64
65 =head1 COPYRIGHT
66
67 Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
68
69 Licensed under the Apache License 2.0 (the "License").  You may not use
70 this file except in compliance with the License.  You can obtain a copy
71 in the file LICENSE in the source distribution or at
72 L<https://www.openssl.org/source/license.html>.
73
74 =cut