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 * 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 Loading... |
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 |
OLD | NEW |