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

Side by Side Diff: nss/lib/util/secasn1d.c

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/util/secasn1.h ('k') | nss/lib/util/secasn1e.c » ('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 * Support for DEcoding ASN.1 data based on BER/DER (Basic/Distinguished 6 * Support for DEcoding ASN.1 data based on BER/DER (Basic/Distinguished
7 * Encoding Rules). 7 * Encoding Rules).
8 *
9 * $Id$
10 */ 8 */
11 9
12 /* #define DEBUG_ASN1D_STATES 1 */ 10 /* #define DEBUG_ASN1D_STATES 1 */
13 11
14 #ifdef DEBUG_ASN1D_STATES 12 #ifdef DEBUG_ASN1D_STATES
15 #include <stdio.h> 13 #include <stdio.h>
16 #define PR_Assert sec_asn1d_Assert 14 #define PR_Assert sec_asn1d_Assert
17 #endif 15 #endif
18 16
19 #include "secasn1.h" 17 #include "secasn1.h"
(...skipping 3208 matching lines...) Expand 10 before | Expand all | Expand 10 after
3228 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_EnumeratedTemplate) 3226 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_EnumeratedTemplate)
3229 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_PointerToEnumeratedTemplate) 3227 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_PointerToEnumeratedTemplate)
3230 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_SequenceOfAnyTemplate) 3228 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_SequenceOfAnyTemplate)
3231 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_SequenceOfObjectIDTemplate) 3229 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_SequenceOfObjectIDTemplate)
3232 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_SkipTemplate) 3230 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_SkipTemplate)
3233 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_UniversalStringTemplate) 3231 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_UniversalStringTemplate)
3234 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_PrintableStringTemplate) 3232 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_PrintableStringTemplate)
3235 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_T61StringTemplate) 3233 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_T61StringTemplate)
3236 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_PointerToGeneralizedTimeTemplate) 3234 SEC_ASN1_CHOOSER_IMPLEMENT(SEC_PointerToGeneralizedTimeTemplate)
3237 3235
OLDNEW
« no previous file with comments | « nss/lib/util/secasn1.h ('k') | nss/lib/util/secasn1e.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698