VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/crypto/tsp-template.h@ 62477

Last change on this file since 62477 was 62477, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 KB
Line 
1/* $Id: tsp-template.h 62477 2016-07-22 18:27:37Z vboxsync $ */
2/** @file
3 * IPRT - Crypto - Time-Stamp Protocol (RFC-3161), Code Generator Template.
4 */
5
6/*
7 * Copyright (C) 2006-2016 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 * MessageImprint
31 */
32#define RTASN1TMPL_TYPE RTCRTSPMESSAGEIMPRINT
33#define RTASN1TMPL_EXT_NAME RTCrTspMessageImprint
34#define RTASN1TMPL_INT_NAME rtCrTspMessageImprint
35RTASN1TMPL_BEGIN_SEQCORE();
36RTASN1TMPL_MEMBER( HashAlgorithm, RTCRX509ALGORITHMIDENTIFIER, RTCrX509AlgorithmIdentifier);
37RTASN1TMPL_MEMBER( HashedMessage, RTASN1OCTETSTRING, RTAsn1OctetString);
38RTASN1TMPL_END_SEQCORE();
39#undef RTASN1TMPL_TYPE
40#undef RTASN1TMPL_EXT_NAME
41#undef RTASN1TMPL_INT_NAME
42
43/*
44 * TimeStampReq
45 */
46
47/*
48 * PKIStatusInfo
49 */
50
51/*
52 * TimeStampResp
53 */
54
55/*
56 * Accuracy
57 */
58#define RTASN1TMPL_TYPE RTCRTSPACCURACY
59#define RTASN1TMPL_EXT_NAME RTCrTspAccuracy
60#define RTASN1TMPL_INT_NAME rtCrTspAccuracy
61RTASN1TMPL_BEGIN_SEQCORE();
62RTASN1TMPL_MEMBER_OPT_ITAG_EX( Seconds, RTASN1INTEGER, RTAsn1Integer, ASN1_TAG_INTEGER, RTASN1TMPL_ITAG_F_UP,
63 RTASN1TMPL_MEMBER_CONSTR_U64_MIN_MAX(Seconds, 0, UINT64_MAX, RT_NOTHING));
64/** @todo The Millis and Micros fields makes no sense if Seconds > 1, while the
65 * Micros field makes no sense with Millis > 1. Add constraints
66 * expressing this dependency. */
67RTASN1TMPL_MEMBER_OPT_ITAG_EX( Millis, RTASN1INTEGER, RTAsn1Integer, 0, RTASN1TMPL_ITAG_F_CP,
68 RTASN1TMPL_MEMBER_CONSTR_U64_MIN_MAX(Millis, 1, 999, RT_NOTHING));
69RTASN1TMPL_MEMBER_OPT_ITAG_EX( Micros, RTASN1INTEGER, RTAsn1Integer, 1, RTASN1TMPL_ITAG_F_CP,
70 RTASN1TMPL_MEMBER_CONSTR_U64_MIN_MAX(Micros, 1, 999, RT_NOTHING));
71RTASN1TMPL_END_SEQCORE();
72#undef RTASN1TMPL_TYPE
73#undef RTASN1TMPL_EXT_NAME
74#undef RTASN1TMPL_INT_NAME
75
76
77/*
78 * TSTInfo
79 */
80#define RTASN1TMPL_TYPE RTCRTSPTSTINFO
81#define RTASN1TMPL_EXT_NAME RTCrTspTstInfo
82#define RTASN1TMPL_INT_NAME rtCrTspTstInfo
83RTASN1TMPL_BEGIN_SEQCORE();
84RTASN1TMPL_MEMBER( Version, RTASN1INTEGER, RTAsn1Integer);
85RTASN1TMPL_MEMBER( Policy, RTASN1OBJID, RTAsn1ObjId);
86RTASN1TMPL_MEMBER( MessageImprint, RTCRTSPMESSAGEIMPRINT, RTCrTspMessageImprint);
87RTASN1TMPL_MEMBER( SerialNumber, RTASN1INTEGER, RTAsn1Integer);
88RTASN1TMPL_MEMBER( GenTime, RTASN1TIME, RTAsn1GeneralizedTime);
89RTASN1TMPL_MEMBER_OPT_ITAG_UC( Accuracy, RTCRTSPACCURACY, RTCrTspAccuracy, ASN1_TAG_SEQUENCE);
90RTASN1TMPL_MEMBER_DEF_ITAG_UP( Ordering, RTASN1BOOLEAN, RTAsn1Boolean, ASN1_TAG_BOOLEAN, 0 /*False*/);
91RTASN1TMPL_MEMBER_OPT_ITAG_UP( Nonce, RTASN1INTEGER, RTAsn1Integer, ASN1_TAG_INTEGER);
92RTASN1TMPL_MEMBER_OPT_XTAG( T0, CtxTag0, Tsa, RTCRX509GENERALNAME, RTCrX509GeneralName, 0);
93RTASN1TMPL_MEMBER_OPT_ITAG( Extensions, RTCRX509EXTENSION, RTCrX509Extension, 1);
94RTASN1TMPL_END_SEQCORE();
95#undef RTASN1TMPL_TYPE
96#undef RTASN1TMPL_EXT_NAME
97#undef RTASN1TMPL_INT_NAME
98
Note: See TracBrowser for help on using the repository browser.

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