Botan 3.7.1
Crypto and TLS for C&
Botan::PKCS11::MechanismWrapper Class Referencefinal

#include <p11_mechanism.h>

Classes

union  MechanismParameters
 Holds the mechanism parameters for OAEP, PSS and ECDH. More...
 

Public Member Functions

Mechanismdata () const
 
MechanismType mechanism_type () const
 
 MechanismWrapper (MechanismType mechanism_type)
 
size_t padding_size () const
 
void set_ecdh_other_key (const uint8_t other_key[], size_t other_key_len)
 
void set_ecdh_salt (const uint8_t salt[], size_t salt_len)
 

Static Public Member Functions

static MechanismWrapper create_ecdh_mechanism (std::string_view params)
 
static MechanismWrapper create_ecdsa_mechanism (std::string_view hash)
 
static MechanismWrapper create_rsa_crypt_mechanism (std::string_view padding)
 
static MechanismWrapper create_rsa_sign_mechanism (std::string_view padding)
 

Detailed Description

Simple class to build and hold the data for a CK_MECHANISM struct for RSA (encryption/decryption, signature/verification) and EC (ECDSA signature/verification, ECDH key derivation).

Definition at line 26 of file p11_mechanism.h.

Constructor & Destructor Documentation

◆ MechanismWrapper()

Botan::PKCS11::MechanismWrapper::MechanismWrapper ( MechanismType mechanism_type)
explicit
Parameters
mechanism_typethe CK_MECHANISM_TYPE for the mechanism field of the CK_MECHANISM struct

Definition at line 213 of file p11_mechanism.cpp.

213 :
214 m_mechanism({static_cast<CK_MECHANISM_TYPE>(mechanism_type), nullptr, 0}), m_parameters(nullptr) {}
MechanismType mechanism_type() const
CK_ULONG CK_MECHANISM_TYPE
Definition pkcs11t.h:583

References mechanism_type().

Referenced by create_ecdsa_mechanism().

Member Function Documentation

◆ create_ecdh_mechanism()

MechanismWrapper Botan::PKCS11::MechanismWrapper::create_ecdh_mechanism ( std::string_view params)
static

Creates the CK_MECHANISM data for ECDH key derivation (CKM_ECDH1_DERIVE or CKM_ECDH1_COFACTOR_DERIVE)

Parameters
paramsspecifies the key derivation function to use. Supported KDFs are Raw and SHA-1 to SHA-512. Params can also include the string "Cofactor" if the cofactor key derivation mechanism should be used, for example "SHA-512,Cofactor"

Definition at line 280 of file p11_mechanism.cpp.

280 {
281 std::vector<std::string> param_parts = split_on(params, ',');
282
283 if(param_parts.empty() || param_parts.size() > 2) {
284 throw Invalid_Argument(fmt("PKCS #11 ECDH key derivation bad params {}", params));
285 }
286
287 const bool use_cofactor =
288 (param_parts[0] == "Cofactor") || (param_parts.size() == 2 && param_parts[1] == "Cofactor");
289
290 std::string kdf_name = (param_parts[0] == "Cofactor" ? param_parts[1] : param_parts[0]);
291 std::string hash = kdf_name;
292
293 if(kdf_name != "Raw") {
294 SCAN_Name kdf_hash(kdf_name);
295
296 if(kdf_hash.arg_count() > 0) {
297 hash = kdf_hash.arg(0);
298 }
299 }
300
301 auto kdf = EcdhHash.find(hash);
302 if(kdf == EcdhHash.end()) {
303 throw Lookup_Error("PKCS#11 ECDH key derivation does not support KDF " + kdf_name);
304 }
306 mech.m_parameters = std::make_shared<MechanismParameters>();
307 mech.m_parameters->ecdh_params.kdf = static_cast<CK_EC_KDF_TYPE>(kdf->second);
308 mech.m_mechanism.pParameter = mech.m_parameters.get();
309 mech.m_mechanism.ulParameterLen = sizeof(Ecdh1DeriveParams);
310 return mech;
311}
MechanismWrapper(MechanismType mechanism_type)
CK_ECDH1_DERIVE_PARAMS Ecdh1DeriveParams
Definition p11.h:830
std::string fmt(std::string_view format, const T &... args)
Definition fmt.h:53
std::vector< std::string > split_on(std::string_view str, char delim)
Definition parsing.cpp:111
CK_ULONG CK_EC_KDF_TYPE
Definition pkcs11t.h:1287

References Botan::SCAN_Name::arg(), Botan::SCAN_Name::arg_count(), Botan::PKCS11::Ecdh1CofactorDerive, Botan::PKCS11::Ecdh1Derive, Botan::fmt(), CK_MECHANISM::pParameter, Botan::split_on(), and CK_MECHANISM::ulParameterLen.

◆ create_ecdsa_mechanism()

MechanismWrapper Botan::PKCS11::MechanismWrapper::create_ecdsa_mechanism ( std::string_view hash)
static

Creates the CK_MECHANISM data for ECDSA signature/verification

Parameters
hashthe hash algorithm used to hash the data to sign. supported hash functions are Raw and SHA-1 to SHA-512

Definition at line 261 of file p11_mechanism.cpp.

261 {
262 const std::string hash_spec(hash_spec_view);
263 auto mechanism = EcdsaHash.find(hash_spec);
264 if(mechanism != EcdsaHash.end()) {
265 return MechanismWrapper(mechanism->second);
266 }
267
268 SCAN_Name req(hash_spec);
269
270 if(req.algo_name() == "EMSA1" && req.arg_count() == 1) {
271 mechanism = EcdsaHash.find(req.arg(0));
272 if(mechanism != EcdsaHash.end()) {
273 return MechanismWrapper(mechanism->second);
274 }
275 }
276
277 throw Lookup_Error(fmt("PKCS #11 ECDSA sign/verify does not support {}", hash_spec));
278}

References Botan::SCAN_Name::algo_name(), Botan::SCAN_Name::arg(), Botan::SCAN_Name::arg_count(), Botan::fmt(), and MechanismWrapper().

◆ create_rsa_crypt_mechanism()

MechanismWrapper Botan::PKCS11::MechanismWrapper::create_rsa_crypt_mechanism ( std::string_view padding)
static

Creates the CK_MECHANISM data for RSA encryption/decryption

Parameters
paddingsupported paddings are Raw (X.509), EME-PKCS1-v1_5 (PKCS#1 v1.5) and OAEP (PKCS#1 OAEP)

Definition at line 216 of file p11_mechanism.cpp.

216 {
217 const std::string padding(padding_view);
218 auto mechanism_info_it = CryptMechanisms.find(padding);
219 if(mechanism_info_it == CryptMechanisms.end()) {
220 // at this point it would be possible to support additional configurations that are not predefined above by parsing `padding`
221 throw Lookup_Error("PKCS#11 RSA encrypt/decrypt does not support EME " + padding);
222 }
223 RSA_CryptMechanism mechanism_info = mechanism_info_it->second;
224
225 MechanismWrapper mech(mechanism_info.type());
226 if(mechanism_info.type() == MechanismType::RsaPkcsOaep) {
227 mech.m_parameters = std::make_shared<MechanismParameters>();
228 mech.m_parameters->oaep_params.hashAlg = static_cast<CK_MECHANISM_TYPE>(mechanism_info.hash());
229 mech.m_parameters->oaep_params.mgf = static_cast<CK_RSA_PKCS_MGF_TYPE>(mechanism_info.mgf());
230 mech.m_parameters->oaep_params.source = CKZ_DATA_SPECIFIED;
231 mech.m_parameters->oaep_params.pSourceData = nullptr;
232 mech.m_parameters->oaep_params.ulSourceDataLen = 0;
233 mech.m_mechanism.pParameter = mech.m_parameters.get();
234 mech.m_mechanism.ulParameterLen = sizeof(RsaPkcsOaepParams);
235 }
236 mech.m_padding_size = mechanism_info.padding_size();
237 return mech;
238}
CK_RSA_PKCS_OAEP_PARAMS RsaPkcsOaepParams
Definition p11.h:828
#define CKZ_DATA_SPECIFIED
Definition pkcs11t.h:1261
CK_ULONG CK_RSA_PKCS_MGF_TYPE
Definition pkcs11t.h:1241

References CKZ_DATA_SPECIFIED, CK_MECHANISM::pParameter, Botan::PKCS11::RsaPkcsOaep, and CK_MECHANISM::ulParameterLen.

◆ create_rsa_sign_mechanism()

MechanismWrapper Botan::PKCS11::MechanismWrapper::create_rsa_sign_mechanism ( std::string_view padding)
static

Creates the CK_MECHANISM data for RSA signature/verification

Parameters
paddingsupported paddings are Raw (X.509), EMSA3 (PKCS#1 v1.5), EMSA4 (PKCS#1 PSS), EMSA2 (ANSI X9.31) and ISO9796 (ISO/IEC 9796)

Definition at line 240 of file p11_mechanism.cpp.

240 {
241 const std::string padding(padding_view);
242 auto mechanism_info_it = SignMechanisms.find(padding);
243 if(mechanism_info_it == SignMechanisms.end()) {
244 // at this point it would be possible to support additional configurations that are not predefined above by parsing `padding`
245 throw Lookup_Error("PKCS#11 RSA sign/verify does not support EMSA " + padding);
246 }
247 RSA_SignMechanism mechanism_info = mechanism_info_it->second;
248
249 MechanismWrapper mech(mechanism_info.type());
250 if(PssOptions.find(mechanism_info.type()) != PssOptions.end()) {
251 mech.m_parameters = std::make_shared<MechanismParameters>();
252 mech.m_parameters->pss_params.hashAlg = static_cast<CK_MECHANISM_TYPE>(mechanism_info.hash());
253 mech.m_parameters->pss_params.mgf = static_cast<CK_RSA_PKCS_MGF_TYPE>(mechanism_info.mgf());
254 mech.m_parameters->pss_params.sLen = static_cast<Ulong>(mechanism_info.salt_size());
255 mech.m_mechanism.pParameter = mech.m_parameters.get();
256 mech.m_mechanism.ulParameterLen = sizeof(RsaPkcsPssParams);
257 }
258 return mech;
259}
CK_ULONG Ulong
Definition p11.h:816
CK_RSA_PKCS_PSS_PARAMS RsaPkcsPssParams
Definition p11.h:829

References CK_MECHANISM::pParameter, and CK_MECHANISM::ulParameterLen.

◆ data()

Mechanism * Botan::PKCS11::MechanismWrapper::data ( ) const
inline
Returns
a pointer to the CK_MECHANISM struct that can be passed to the cryptoki functions

Definition at line 81 of file p11_mechanism.h.

81{ return const_cast<Mechanism*>(&m_mechanism); }
CK_MECHANISM Mechanism
Definition p11.h:819

◆ mechanism_type()

MechanismType Botan::PKCS11::MechanismWrapper::mechanism_type ( ) const
inline

Definition at line 83 of file p11_mechanism.h.

83{ return static_cast<MechanismType>(m_mechanism.mechanism); }
CK_MECHANISM_TYPE mechanism
Definition pkcs11t.h:984

Referenced by MechanismWrapper().

◆ padding_size()

size_t Botan::PKCS11::MechanismWrapper::padding_size ( ) const
inline
Returns
the size of the padding in bytes (for encryption/decryption)

Definition at line 86 of file p11_mechanism.h.

86{ return m_padding_size; }

◆ set_ecdh_other_key()

void Botan::PKCS11::MechanismWrapper::set_ecdh_other_key ( const uint8_t other_key[],
size_t other_key_len )
inline

Sets the public key of the other party for the ECDH mechanism parameters.

Parameters
other_keykey of the other party
other_key_lensize of the key of the other party in bytes

Definition at line 75 of file p11_mechanism.h.

75 {
76 m_parameters->ecdh_params.pPublicData = const_cast<uint8_t*>(other_key);
77 m_parameters->ecdh_params.ulPublicDataLen = static_cast<Ulong>(other_key_len);
78 }

◆ set_ecdh_salt()

void Botan::PKCS11::MechanismWrapper::set_ecdh_salt ( const uint8_t salt[],
size_t salt_len )
inline

Sets the salt for the ECDH mechanism parameters.

Parameters
saltthe salt
salt_lensize of the salt in bytes

Definition at line 65 of file p11_mechanism.h.

65 {
66 m_parameters->ecdh_params.pSharedData = const_cast<uint8_t*>(salt);
67 m_parameters->ecdh_params.ulSharedDataLen = static_cast<Ulong>(salt_len);
68 }

The documentation for this class was generated from the following files: