1 /*
2  * Base16 stream functions
3  *
4  * Copyright (C) 2008-2021, Joachim Metz <joachim.metz@gmail.com>
5  *
6  * Refer to AUTHORS for acknowledgements.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #if !defined( _LIBUNA_BASE16_STREAM_H )
23 #define _LIBUNA_BASE16_STREAM_H
24 
25 #include <common.h>
26 #include <types.h>
27 
28 #include "libuna_extern.h"
29 #include "libuna_libcerror.h"
30 #include "libuna_types.h"
31 
32 #if defined( __cplusplus )
33 extern "C" {
34 #endif
35 
36 int libuna_base16_character_copy_from_base16_stream(
37      uint32_t *base16_character,
38      const uint8_t *base16_stream,
39      uint32_t base16_variant,
40      libcerror_error_t **error );
41 
42 LIBUNA_EXTERN \
43 int libuna_base16_stream_size_to_byte_stream(
44      const uint8_t *base16_stream,
45      size_t base16_stream_size,
46      size_t *byte_stream_size,
47      uint32_t base16_variant,
48      uint8_t flags,
49      libcerror_error_t **error );
50 
51 LIBUNA_EXTERN \
52 int libuna_base16_stream_copy_to_byte_stream(
53      const uint8_t *base16_stream,
54      size_t base16_stream_size,
55      uint8_t *byte_stream,
56      size_t byte_stream_size,
57      uint32_t base16_variant,
58      uint8_t flags,
59      libcerror_error_t **error );
60 
61 LIBUNA_EXTERN \
62 int libuna_base16_stream_size_from_byte_stream(
63      const uint8_t *byte_stream,
64      size_t byte_stream_size,
65      size_t *base16_stream_size,
66      uint32_t base16_variant,
67      libcerror_error_t **error );
68 
69 LIBUNA_EXTERN \
70 int libuna_base16_stream_copy_from_byte_stream(
71      uint8_t *base16_stream,
72      size_t base16_stream_size,
73      const uint8_t *byte_stream,
74      size_t byte_stream_size,
75      uint32_t base16_variant,
76      libcerror_error_t **error );
77 
78 LIBUNA_EXTERN \
79 int libuna_base16_stream_with_index_copy_from_byte_stream(
80      uint8_t *base16_stream,
81      size_t base16_stream_size,
82      size_t *base16_stream_index,
83      const uint8_t *byte_stream,
84      size_t byte_stream_size,
85      uint32_t base16_variant,
86      libcerror_error_t **error );
87 
88 #if defined( __cplusplus )
89 }
90 #endif
91 
92 #endif /* !defined( _LIBUNA_BASE16_STREAM_H ) */
93 
94