1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
/** @file
* IPRT - Crypto - RSA Public Key Cryptosystem .
*/
/*
* Copyright (C) 2006-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
#ifndef IPRT_INCLUDED_crypto_rsa_h
#define IPRT_INCLUDED_crypto_rsa_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/asn1.h>
#include <iprt/crypto/x509.h>
#include <iprt/crypto/pkcs7.h>
#include <iprt/md5.h>
#include <iprt/sha.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_cr_rsa RTCrRsa - RSA Public Key Cryptosystem
* @ingroup grp_rt_crypto
* @{
*/
/**
* RSA public key - ASN.1 IPRT representation.
*/
typedef struct RTCRRSAPUBLICKEY
{
/** Sequence core for the structure. */
RTASN1SEQUENCECORE SeqCore;
/** The modulus (n). */
RTASN1INTEGER Modulus;
/** The public exponent (e). */
RTASN1INTEGER PublicExponent;
} RTCRRSAPUBLICKEY;
/** Pointer to the ASN.1 IPRT representation of an RSA public key. */
typedef RTCRRSAPUBLICKEY *PRTCRRSAPUBLICKEY;
/** Pointer to the const ASN.1 IPRT representation of an RSA public key. */
typedef RTCRRSAPUBLICKEY const *PCRTCRRSAPUBLICKEY;
RTASN1TYPE_STANDARD_PROTOTYPES(RTCRRSAPUBLICKEY, RTDECL, RTCrRsaPublicKey, SeqCore.Asn1Core);
/**
* RSA other prime info (ASN.1 IPRT representation).
*/
typedef struct RTCRRSAOTHERPRIMEINFO
{
/** Sequence core for the structure. */
RTASN1SEQUENCECORE SeqCore;
/** The prime (ri). */
RTASN1INTEGER Prime;
/** The exponent (di). */
RTASN1INTEGER Exponent;
/** The coefficient (ti). */
RTASN1INTEGER Coefficient;
} RTCRRSAOTHERPRIMEINFO;
/** Pointer to the ASN.1 IPRT representation of RSA other prime info. */
typedef RTCRRSAOTHERPRIMEINFO *PRTCRRSAOTHERPRIMEINFO;
/** Pointer to the const ASN.1 IPRT representation of RSA other prime info. */
typedef RTCRRSAOTHERPRIMEINFO const *PCRTCRRSAOTHERPRIMEINFO;
RTASN1TYPE_STANDARD_PROTOTYPES(RTCRRSAOTHERPRIMEINFO, RTDECL, RTCrRsaOtherPrimeInfo, SeqCore.Asn1Core);
RTASN1_IMPL_GEN_SEQ_OF_TYPEDEFS_AND_PROTOS(RTCRRSAOTHERPRIMEINFOS, RTCRRSAOTHERPRIMEINFO, RTDECL, RTCrRsaOtherPrimeInfos);
/**
* RSA private key - ASN.1 IPRT representation.
*/
typedef struct RTCRRSAPRIVATEKEY
{
/** Sequence core for the structure. */
RTASN1SEQUENCECORE SeqCore;
/** Key version number. */
RTASN1INTEGER Version;
/** The modulus (n). */
RTASN1INTEGER Modulus;
/** The public exponent (e). */
RTASN1INTEGER PublicExponent;
/** The private exponent (d). */
RTASN1INTEGER PrivateExponent;
/** The first prime factor (p) of the modulus (n). */
RTASN1INTEGER Prime1;
/** The second prime factor (q) of the modulus (n). */
RTASN1INTEGER Prime2;
/** The first exponent (d mod (p-1)). */
RTASN1INTEGER Exponent1;
/** The second exponent (d mod (q-1)). */
RTASN1INTEGER Exponent2;
/** The coefficient ((inverse of q) mod p). */
RTASN1INTEGER Coefficient;
/** Optional other prime information (version must be 'multi' if present). */
RTCRRSAOTHERPRIMEINFOS OtherPrimeInfos;
} RTCRRSAPRIVATEKEY;
/** Pointer to the ASN.1 IPRT representation of an RSA private key. */
typedef RTCRRSAPRIVATEKEY *PRTCRRSAPRIVATEKEY;
/** Pointer to the const ASN.1 IPRT representation of an RSA private key. */
typedef RTCRRSAPRIVATEKEY const *PCRTCRRSAPRIVATEKEY;
RTASN1TYPE_STANDARD_PROTOTYPES(RTCRRSAPRIVATEKEY, RTDECL, RTCrRsaPrivateKey, SeqCore.Asn1Core);
/** @name RSA Private Key Versions
* @{ */
#define RTCRRSAPRIVATEKEY_VERSION_TWO_PRIME 0
#define RTCRRSAPRIVATEKEY_VERSION_MULTI 1
/** @} */
/**
* RSA DigestInfo used by the EMSA-PKCS1-v1_5 encoding method.
*/
typedef struct RTCRRSADIGESTINFO
{
/** Sequence core for the structure. */
RTASN1SEQUENCECORE SeqCore;
/** The digest algorithm. */
RTCRX509ALGORITHMIDENTIFIER DigestAlgorithm;
/** The digest. */
RTASN1OCTETSTRING Digest;
} RTCRRSADIGESTINFO;
/** Pointer to the ASN.1 IPRT representation of RSA digest info. */
typedef RTCRRSADIGESTINFO *PRTCRRSADIGESTINFO;
/** Pointer to the const ASN.1 IPRT representation of RSA digest info. */
typedef RTCRRSADIGESTINFO const *PCRTCRRSADIGESTINFO;
RTASN1TYPE_STANDARD_PROTOTYPES(RTCRRSADIGESTINFO, RTDECL, RTCrRsaDigestInfo, SeqCore.Asn1Core);
/** @} */
RT_C_DECLS_END
#endif /* !IPRT_INCLUDED_crypto_rsa_h */
|