VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/crypto/pkcs7-template.h@ 52206

Last change on this file since 52206 was 51770, checked in by vboxsync, 11 years ago

Merged in iprt++ dev branch.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1/* $Id: pkcs7-template.h 51770 2014-07-01 18:14:02Z vboxsync $ */
2/** @file
3 * IPRT - Crypto - PKCS \#7, Core APIs, Code Generator Template.
4 */
5
6/*
7 * Copyright (C) 2006-2014 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#define RTASN1TMPL_DECL RTDECL
28
29/*
30 * One PCKS #7 IssuerAndSerialNumber.
31 */
32#define RTASN1TMPL_TYPE RTCRPKCS7ISSUERANDSERIALNUMBER
33#define RTASN1TMPL_EXT_NAME RTCrPkcs7IssuerAndSerialNumber
34#define RTASN1TMPL_INT_NAME rtCrPkcs7IssuerAndSerialNumber
35RTASN1TMPL_BEGIN_SEQCORE();
36RTASN1TMPL_MEMBER( Name, RTCRX509NAME, RTCrX509Name);
37RTASN1TMPL_MEMBER( SerialNumber, RTASN1INTEGER, RTAsn1Integer);
38RTASN1TMPL_END_SEQCORE();
39#undef RTASN1TMPL_TYPE
40#undef RTASN1TMPL_EXT_NAME
41#undef RTASN1TMPL_INT_NAME
42
43
44/*
45 * One PCKS #7 Attribute.
46 */
47#define RTASN1TMPL_TYPE RTCRPKCS7ATTRIBUTE
48#define RTASN1TMPL_EXT_NAME RTCrPkcs7Attribute
49#define RTASN1TMPL_INT_NAME rtCrPkcs7Attribute
50RTASN1TMPL_BEGIN_SEQCORE();
51RTASN1TMPL_MEMBER( Type, RTASN1OBJID, RTAsn1ObjId);
52RTASN1TMPL_MEMBER_DYN_BEGIN(RTCRPKCS7ATTRIBUTETYPE, enmType, Allocation);
53RTASN1TMPL_MEMBER_DYN( uValues, pOctetStrings, RTASN1SETOFOCTETSTRINGS, RTAsn1SetOfOctetStrings, Allocation,
54 enmType, RTCRPKCS7ATTRIBUTETYPE_OCTET_STRINGS, RTAsn1ObjId_CompareWithString(&pThis->Type, RTCR_PKCS9_ID_MESSAGE_DIGEST_OID) == 0);
55RTASN1TMPL_MEMBER_DYN( uValues, pObjIds, RTASN1SETOFOBJIDS, RTAsn1SetOfObjIds, Allocation,
56 enmType, RTCRPKCS7ATTRIBUTETYPE_OBJ_IDS, RTAsn1ObjId_CompareWithString(&pThis->Type, RTCR_PKCS9_ID_CONTENT_TYPE_OID) == 0);
57RTASN1TMPL_MEMBER_DYN_DEFAULT( uValues, pCores, RTASN1SETOFCORES, RTAsn1SetOfCores, Allocation,
58 enmType, RTCRPKCS7ATTRIBUTETYPE_UNKNOWN);
59RTASN1TMPL_MEMBER_DYN_END(RTCRPKCS7ATTRIBUTETYPE, enmType, Allocation);
60RTASN1TMPL_END_SEQCORE();
61#undef RTASN1TMPL_TYPE
62#undef RTASN1TMPL_EXT_NAME
63#undef RTASN1TMPL_INT_NAME
64
65
66/*
67 * Set of PCKS #7 Attributes.
68 */
69#define RTASN1TMPL_TYPE RTCRPKCS7ATTRIBUTES
70#define RTASN1TMPL_EXT_NAME RTCrPkcs7Attributes
71#define RTASN1TMPL_INT_NAME rtCrPkcs7Attributes
72RTASN1TMPL_SET_OF(RTCRPKCS7ATTRIBUTE, RTCrPkcs7Attribute);
73#undef RTASN1TMPL_TYPE
74#undef RTASN1TMPL_EXT_NAME
75#undef RTASN1TMPL_INT_NAME
76
77
78/*
79 * One PCKS #7 SignerInfo.
80 */
81#define RTASN1TMPL_TYPE RTCRPKCS7SIGNERINFO
82#define RTASN1TMPL_EXT_NAME RTCrPkcs7SignerInfo
83#define RTASN1TMPL_INT_NAME rtCrPkcs7SignerInfo
84RTASN1TMPL_BEGIN_SEQCORE();
85RTASN1TMPL_MEMBER( Version, RTASN1INTEGER, RTAsn1Integer);
86RTASN1TMPL_MEMBER( IssuerAndSerialNumber, RTCRPKCS7ISSUERANDSERIALNUMBER, RTCrPkcs7IssuerAndSerialNumber);
87RTASN1TMPL_MEMBER( DigestAlgorithm, RTCRX509ALGORITHMIDENTIFIER, RTCrX509AlgorithmIdentifier);
88RTASN1TMPL_MEMBER_OPT_ITAG( AuthenticatedAttributes, RTCRPKCS7ATTRIBUTES, RTCrPkcs7Attributes, 0);
89RTASN1TMPL_MEMBER( DigestEncryptionAlgorithm, RTCRX509ALGORITHMIDENTIFIER, RTCrX509AlgorithmIdentifier);
90RTASN1TMPL_MEMBER( EncryptedDigest, RTASN1OCTETSTRING, RTAsn1OctetString);
91RTASN1TMPL_MEMBER_OPT_ITAG( UnauthenticatedAttributes, RTCRPKCS7ATTRIBUTES, RTCrPkcs7Attributes, 1);
92RTASN1TMPL_END_SEQCORE();
93#undef RTASN1TMPL_TYPE
94#undef RTASN1TMPL_EXT_NAME
95#undef RTASN1TMPL_INT_NAME
96
97
98/*
99 * Set of PCKS #7 SignerInfos.
100 */
101#define RTASN1TMPL_TYPE RTCRPKCS7SIGNERINFOS
102#define RTASN1TMPL_EXT_NAME RTCrPkcs7SignerInfos
103#define RTASN1TMPL_INT_NAME rtCrPkcs7SignerInfos
104RTASN1TMPL_SET_OF(RTCRPKCS7SIGNERINFO, RTCrPkcs7SignerInfo);
105#undef RTASN1TMPL_TYPE
106#undef RTASN1TMPL_EXT_NAME
107#undef RTASN1TMPL_INT_NAME
108
109
110/*
111 * PCKS #7 SignedData.
112 */
113#define RTASN1TMPL_TYPE RTCRPKCS7SIGNEDDATA
114#define RTASN1TMPL_EXT_NAME RTCrPkcs7SignedData
115#define RTASN1TMPL_INT_NAME rtCrPkcs7SignedData
116RTASN1TMPL_BEGIN_SEQCORE();
117RTASN1TMPL_MEMBER( Version, RTASN1INTEGER, RTAsn1Integer);
118RTASN1TMPL_MEMBER( DigestAlgorithms, RTCRX509ALGORITHMIDENTIFIERS, RTCrX509AlgorithmIdentifiers);
119RTASN1TMPL_MEMBER( ContentInfo, RTCRPKCS7CONTENTINFO, RTCrPkcs7ContentInfo);
120RTASN1TMPL_MEMBER_OPT_ITAG( Certificates, RTCRX509CERTIFICATES, RTCrX509Certificates, 0);
121RTASN1TMPL_MEMBER_OPT_ITAG( Crls, RTASN1CORE, RTAsn1Core, 1);
122RTASN1TMPL_MEMBER( SignerInfos, RTCRPKCS7SIGNERINFOS, RTCrPkcs7SignerInfos);
123RTASN1TMPL_EXEC_CHECK_SANITY( rc = rtCrPkcs7SignedData_CheckSanityExtra(pThis, fFlags, pErrInfo, pszErrorTag) ) /* no ; */
124RTASN1TMPL_END_SEQCORE();
125#undef RTASN1TMPL_TYPE
126#undef RTASN1TMPL_EXT_NAME
127#undef RTASN1TMPL_INT_NAME
128
129
130/*
131 * PCKS #7 DigestInfo.
132 */
133#define RTASN1TMPL_TYPE RTCRPKCS7DIGESTINFO
134#define RTASN1TMPL_EXT_NAME RTCrPkcs7DigestInfo
135#define RTASN1TMPL_INT_NAME rtCrPkcs7DigestInfo
136RTASN1TMPL_BEGIN_SEQCORE();
137RTASN1TMPL_MEMBER( DigestAlgorithm, RTCRX509ALGORITHMIDENTIFIER, RTCrX509AlgorithmIdentifier);
138RTASN1TMPL_MEMBER( Digest, RTASN1OCTETSTRING, RTAsn1OctetString);
139RTASN1TMPL_END_SEQCORE();
140#undef RTASN1TMPL_TYPE
141#undef RTASN1TMPL_EXT_NAME
142#undef RTASN1TMPL_INT_NAME
143
144
145/*
146 * PCKS #7 ContentInfo.
147 */
148#define RTASN1TMPL_TYPE RTCRPKCS7CONTENTINFO
149#define RTASN1TMPL_EXT_NAME RTCrPkcs7ContentInfo
150#define RTASN1TMPL_INT_NAME rtCrPkcs7ContentInfo
151RTASN1TMPL_BEGIN_SEQCORE();
152RTASN1TMPL_MEMBER( ContentType, RTASN1OBJID, RTAsn1ObjId);
153RTASN1TMPL_MEMBER_OPT_ITAG( Content, RTASN1OCTETSTRING, RTAsn1OctetString, 0);
154RTASN1TMPL_EXEC_DECODE( rc = rtCrPkcs7ContentInfo_DecodeExtra(pCursor, fFlags, pThis, pszErrorTag)) /* no ; */
155RTASN1TMPL_EXEC_CLONE( rc = rtCrPkcs7ContentInfo_CloneExtra(pThis) ) /* no ; */
156RTASN1TMPL_END_SEQCORE();
157#undef RTASN1TMPL_TYPE
158#undef RTASN1TMPL_EXT_NAME
159#undef RTASN1TMPL_INT_NAME
160
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette