Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | /* |
michael@0 | 6 | * base64.h - prototypes for base64 encoding/decoding |
michael@0 | 7 | * Note: These functions are deprecated; see nssb64.h for new routines. |
michael@0 | 8 | */ |
michael@0 | 9 | #ifndef _BASE64_H_ |
michael@0 | 10 | #define _BASE64_H_ |
michael@0 | 11 | |
michael@0 | 12 | #include "utilrename.h" |
michael@0 | 13 | #include "seccomon.h" |
michael@0 | 14 | |
michael@0 | 15 | SEC_BEGIN_PROTOS |
michael@0 | 16 | |
michael@0 | 17 | /* |
michael@0 | 18 | ** Return an PORT_Alloc'd ascii string which is the base64 encoded |
michael@0 | 19 | ** version of the input string. |
michael@0 | 20 | */ |
michael@0 | 21 | extern char *BTOA_DataToAscii(const unsigned char *data, unsigned int len); |
michael@0 | 22 | |
michael@0 | 23 | /* |
michael@0 | 24 | ** Return an PORT_Alloc'd string which is the base64 decoded version |
michael@0 | 25 | ** of the input string; set *lenp to the length of the returned data. |
michael@0 | 26 | */ |
michael@0 | 27 | extern unsigned char *ATOB_AsciiToData(const char *string, unsigned int *lenp); |
michael@0 | 28 | |
michael@0 | 29 | /* |
michael@0 | 30 | ** Convert from ascii to binary encoding of an item. |
michael@0 | 31 | */ |
michael@0 | 32 | extern SECStatus ATOB_ConvertAsciiToItem(SECItem *binary_item, const char *ascii); |
michael@0 | 33 | |
michael@0 | 34 | /* |
michael@0 | 35 | ** Convert from binary encoding of an item to ascii. |
michael@0 | 36 | */ |
michael@0 | 37 | extern char *BTOA_ConvertItemToAscii(SECItem *binary_item); |
michael@0 | 38 | |
michael@0 | 39 | SEC_END_PROTOS |
michael@0 | 40 | |
michael@0 | 41 | #endif /* _BASE64_H_ */ |