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 * Header for CMS types. | 6 * Header for CMS types. |
7 * | |
8 * $Id$ | |
9 */ | 7 */ |
10 | 8 |
11 #ifndef _CMST_H_ | 9 #ifndef _CMST_H_ |
12 #define _CMST_H_ | 10 #define _CMST_H_ |
13 | 11 |
14 #include "seccomon.h" | 12 #include "seccomon.h" |
15 #include "secoidt.h" | 13 #include "secoidt.h" |
16 #include "certt.h" | 14 #include "certt.h" |
17 #include "secmodt.h" | 15 #include "secmodt.h" |
18 #include "secmodt.h" | 16 #include "secmodt.h" |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 struct NSSCMSAttributeStr { | 487 struct NSSCMSAttributeStr { |
490 /* The following fields make up an encoded Attribute: */ | 488 /* The following fields make up an encoded Attribute: */ |
491 SECItem type; | 489 SECItem type; |
492 SECItem ** values; /* data may or may not be encoded */ | 490 SECItem ** values; /* data may or may not be encoded */ |
493 /* The following fields are not part of an encoded Attribute: */ | 491 /* The following fields are not part of an encoded Attribute: */ |
494 SECOidData * typeTag; | 492 SECOidData * typeTag; |
495 PRBool encoded; /* when true, values are encoded
*/ | 493 PRBool encoded; /* when true, values are encoded
*/ |
496 }; | 494 }; |
497 | 495 |
498 #endif /* _CMST_H_ */ | 496 #endif /* _CMST_H_ */ |
OLD | NEW |