Imported Upstream version 3.3.27
[platform/upstream/gnutls.git] / lib / gnutls_datum.h
1 /*
2  * Copyright (C) 2000-2012 Free Software Foundation, Inc.
3  *
4  * Author: Nikos Mavrogiannopoulos
5  *
6  * This file is part of GnuTLS.
7  *
8  * The GnuTLS is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser 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 <http://www.gnu.org/licenses/>
20  *
21  */
22
23 #ifndef GNUTLS_DATUM_H
24 #define GNUTLS_DATUM_H
25
26 # include <gnutls_int.h>
27
28 int _gnutls_set_datum(gnutls_datum_t * dat, const void *data,
29                       size_t data_size);
30
31 int _gnutls_set_strdatum(gnutls_datum_t * dat, const void *data,
32                          size_t data_size);
33
34 int _gnutls_datum_append(gnutls_datum_t * dat, const void *data,
35                          size_t data_size);
36
37
38 inline static
39 void _gnutls_free_datum(gnutls_datum_t * dat)
40 {
41         if (dat == NULL)
42                 return;
43
44         if (dat->data != NULL)
45                 gnutls_free(dat->data);
46
47         dat->data = NULL;
48         dat->size = 0;
49 }
50
51 inline static
52 void _gnutls_free_temp_key_datum(gnutls_datum_t * dat)
53 {
54         if (dat->data != NULL) {
55                 zeroize_temp_key(dat->data, dat->size);
56                 gnutls_free(dat->data);
57         }
58
59         dat->data = NULL;
60         dat->size = 0;
61 }
62
63 inline static
64 void _gnutls_free_key_datum(gnutls_datum_t * dat)
65 {
66         if (dat->data != NULL) {
67                 zeroize_key(dat->data, dat->size);
68                 gnutls_free(dat->data);
69         }
70
71         dat->data = NULL;
72         dat->size = 0;
73 }
74
75 #endif