Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(519)

Side by Side Diff: nss/lib/util/base64.h

Issue 16285003: Remove CVS keywords from NSS source files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « nss/lib/ssl/sslerr.h ('k') | nss/lib/util/ciferfam.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_ */
OLDNEW
« no previous file with comments | « nss/lib/ssl/sslerr.h ('k') | nss/lib/util/ciferfam.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698