forked from arnaudmorin/libgtop11dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPkcs11ObjectKeyPublicRSA.cpp
More file actions
215 lines (142 loc) · 5.2 KB
/
Pkcs11ObjectKeyPublicRSA.cpp
File metadata and controls
215 lines (142 loc) · 5.2 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
* PKCS#11 library for .Net smart cards
* Copyright (C) 2007-2009 Gemalto <support@gemalto.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "Log.hpp"
#include "util.h"
#include "Pkcs11ObjectKeyPublicRSA.hpp"
#include "PKCS11Exception.hpp"
Pkcs11ObjectKeyPublicRSA::Pkcs11ObjectKeyPublicRSA( ) : Pkcs11ObjectKeyPublic( ) {
m_ulModulusBits = 0;
_keyType = CKK_RSA;
_mechanismType = CKM_RSA_PKCS_KEY_PAIR_GEN;
}
Pkcs11ObjectKeyPublicRSA::Pkcs11ObjectKeyPublicRSA( const Pkcs11ObjectKeyPublicRSA* p ) : Pkcs11ObjectKeyPublic( p ) {
_keyType = CKK_RSA;
_mechanismType = CKM_RSA_PKCS_KEY_PAIR_GEN;
if( p ) {
m_ulModulusBits = p->m_ulModulusBits;
if( p->m_pModulus.get( ) ) {
Marshaller::u1Array* x = new Marshaller::u1Array( *(p->m_pModulus.get( )) );
m_pModulus.reset( x );
} else {
m_pModulus.reset( );
}
if( p->m_pPublicExponent.get( ) ) {
Marshaller::u1Array* x = new Marshaller::u1Array( *(p->m_pPublicExponent.get( )) );
m_pPublicExponent.reset( x );
} else {
m_pPublicExponent.reset( );
}
} else {
m_ulModulusBits = 0;
m_pModulus.reset( );
m_pPublicExponent.reset( );
}
}
bool Pkcs11ObjectKeyPublicRSA ::compare( const CK_ATTRIBUTE& attribute)
{
switch(attribute.type){
case CKA_MODULUS:
return Util::compareU1Arrays(m_pModulus.get( ), (unsigned char*)attribute.pValue,attribute.ulValueLen);
case CKA_MODULUS_BITS:
return (m_ulModulusBits == *(CK_ULONG*)attribute.pValue);
case CKA_PUBLIC_EXPONENT:
return Util::compareU1Arrays(m_pModulus.get( ), (unsigned char*)attribute.pValue,attribute.ulValueLen);
default:
return Pkcs11ObjectKeyPublic::compare(attribute);
}
}
void Pkcs11ObjectKeyPublicRSA ::getAttribute(CK_ATTRIBUTE_PTR attribute)
{
switch(attribute->type){
case CKA_MODULUS:
StorageObject::putU1ArrayInAttribute(m_pModulus.get( ),attribute);
break;
case CKA_MODULUS_BITS:
StorageObject::putULongInAttribute(m_ulModulusBits,attribute);
break;
case CKA_PUBLIC_EXPONENT:
StorageObject::putU1ArrayInAttribute(m_pPublicExponent.get( ),attribute);
break;
default:
Pkcs11ObjectKeyPublic::getAttribute(attribute);
break;
}
}
/*
*/
void Pkcs11ObjectKeyPublicRSA::setAttribute( const CK_ATTRIBUTE& a_Attribute, const bool& a_bObjCreation ) {
if( !a_Attribute.ulValueLen ) {
return;
}
if( !a_bObjCreation ) {
switch( a_Attribute.type ) {
case CKA_PUBLIC_EXPONENT:
case CKA_MODULUS:
case CKA_MODULUS_BITS:
throw PKCS11Exception( CKR_ATTRIBUTE_READ_ONLY );
}
}
switch( a_Attribute.type ) {
case CKA_MODULUS:
m_pModulus.reset( StorageObject::readU1ArrayFromAttribute( a_Attribute ) );
m_ulModulusBits = m_pModulus->GetLength()*8;
break;
case CKA_PUBLIC_EXPONENT:
m_pPublicExponent.reset( StorageObject::readU1ArrayFromAttribute( a_Attribute ) );
break;
case CKA_MODULUS_BITS:
m_ulModulusBits = StorageObject::readULongFromAttribute( a_Attribute );
break;
default:
Pkcs11ObjectKeyPublic::setAttribute( a_Attribute, a_bObjCreation );
}
}
/*
*/
void Pkcs11ObjectKeyPublicRSA::serialize( std::vector<u1> *to ) {
Pkcs11ObjectKeyPublic::serialize(to);
Util::PushByteArrayInVector(to,m_pModulus.get( ) );
Util::PushByteArrayInVector(to,m_pPublicExponent.get( ) );
Util::PushULongInVector(to,m_ulModulusBits);
}
/*
*/
void Pkcs11ObjectKeyPublicRSA::deserialize( std::vector<u1>& from, CK_ULONG_PTR idx ) {
Pkcs11ObjectKeyPublic::deserialize( from, idx );
m_pModulus.reset( Util::ReadByteArrayFromVector( from, idx ) );
m_pPublicExponent.reset( Util::ReadByteArrayFromVector( from, idx ) );
m_ulModulusBits = Util::ReadULongFromVector( from, idx );
}
/*
*/
void Pkcs11ObjectKeyPublicRSA::print( void ) {
Pkcs11ObjectKeyPublic::print( );
Log::log( "CKA_MODULUS_BITS <%ld>", m_ulModulusBits );
if( m_pModulus.get( ) ) {
Log::logCK_UTF8CHAR_PTR( "CKA_MODULUS", m_pModulus->GetBuffer( ), m_pModulus->GetLength( ) );
} else {
Log::log( "CKA_MODULUS <null>" );
}
if( m_pPublicExponent.get( ) ) {
Log::logCK_UTF8CHAR_PTR( "CKA_PUBLIC_EXPONENT", m_pPublicExponent->GetBuffer( ), m_pPublicExponent->GetLength( ) );
} else {
Log::log( "CKA_PUBLIC_EXPONENT <null>" );
}
}