OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 /* | 5 /* |
6 * base64.h - prototypes for base64 encoding/decoding | 6 * base64.h - prototypes for base64 encoding/decoding |
7 * Note: These functions are deprecated; see nssb64.h for new routines. | 7 * Note: These functions are deprecated; see nssb64.h for new routines. |
8 * | |
9 * $Id$ | |
10 */ | 8 */ |
11 #ifndef _BASE64_H_ | 9 #ifndef _BASE64_H_ |
12 #define _BASE64_H_ | 10 #define _BASE64_H_ |
13 | 11 |
14 #include "utilrename.h" | 12 #include "utilrename.h" |
15 #include "seccomon.h" | 13 #include "seccomon.h" |
16 | 14 |
17 SEC_BEGIN_PROTOS | 15 SEC_BEGIN_PROTOS |
18 | 16 |
19 /* | 17 /* |
(...skipping 14 matching lines...) Expand all Loading... |
34 extern SECStatus ATOB_ConvertAsciiToItem(SECItem *binary_item, const char *ascii
); | 32 extern SECStatus ATOB_ConvertAsciiToItem(SECItem *binary_item, const char *ascii
); |
35 | 33 |
36 /* | 34 /* |
37 ** Convert from binary encoding of an item to ascii. | 35 ** Convert from binary encoding of an item to ascii. |
38 */ | 36 */ |
39 extern char *BTOA_ConvertItemToAscii(SECItem *binary_item); | 37 extern char *BTOA_ConvertItemToAscii(SECItem *binary_item); |
40 | 38 |
41 SEC_END_PROTOS | 39 SEC_END_PROTOS |
42 | 40 |
43 #endif /* _BASE64_H_ */ | 41 #endif /* _BASE64_H_ */ |
OLD | NEW |