|
5 | 5 | pub mod aead;
|
6 | 6 | pub mod ekdf;
|
7 | 7 | pub mod elliptic_curve;
|
| 8 | +pub mod hkdf; |
8 | 9 | mod mechanism_info;
|
9 | 10 | pub mod rsa;
|
10 | 11 |
|
@@ -281,6 +282,18 @@ impl MechanismType {
|
281 | 282 | val: CKM_GENERIC_SECRET_KEY_GEN,
|
282 | 283 | };
|
283 | 284 |
|
| 285 | + // HKDF |
| 286 | + /// HKDF key generation mechanism |
| 287 | + pub const HKDF_KEY_GEN: MechanismType = MechanismType { |
| 288 | + val: CKM_HKDF_KEY_GEN, |
| 289 | + }; |
| 290 | + /// HKDF-DERIVE mechanism |
| 291 | + pub const HKDF_DERIVE: MechanismType = MechanismType { |
| 292 | + val: CKM_HKDF_DERIVE, |
| 293 | + }; |
| 294 | + /// HKDF-DATA mechanism |
| 295 | + pub const HKDF_DATA: MechanismType = MechanismType { val: CKM_HKDF_DATA }; |
| 296 | + |
284 | 297 | pub(crate) fn stringify(mech: CK_MECHANISM_TYPE) -> String {
|
285 | 298 | match mech {
|
286 | 299 | CKM_RSA_PKCS_KEY_PAIR_GEN => String::from(stringify!(CKM_RSA_PKCS_KEY_PAIR_GEN)),
|
@@ -637,6 +650,9 @@ impl MechanismType {
|
637 | 650 | String::from(stringify!(CKM_EC_MONTGOMERY_KEY_PAIR_GEN))
|
638 | 651 | }
|
639 | 652 | CKM_EDDSA => String::from(stringify!(CKM_EDDSA)),
|
| 653 | + CKM_HKDF_KEY_GEN => String::from(stringify!(CKM_HKDF_KEY_GEN)), |
| 654 | + CKM_HKDF_DERIVE => String::from(stringify!(CKM_HKDF_DERIVE)), |
| 655 | + CKM_HKDF_DATA => String::from(stringify!(CKM_HKDF_DATA)), |
640 | 656 | _ => format!("unknown {mech:08x}"),
|
641 | 657 | }
|
642 | 658 | }
|
@@ -712,6 +728,9 @@ impl TryFrom<CK_MECHANISM_TYPE> for MechanismType {
|
712 | 728 | CKM_SHA384_HMAC => Ok(MechanismType::SHA384_HMAC),
|
713 | 729 | CKM_SHA512_HMAC => Ok(MechanismType::SHA512_HMAC),
|
714 | 730 | CKM_GENERIC_SECRET_KEY_GEN => Ok(MechanismType::GENERIC_SECRET_KEY_GEN),
|
| 731 | + CKM_HKDF_KEY_GEN => Ok(MechanismType::HKDF_KEY_GEN), |
| 732 | + CKM_HKDF_DERIVE => Ok(MechanismType::HKDF_DERIVE), |
| 733 | + CKM_HKDF_DATA => Ok(MechanismType::HKDF_DATA), |
715 | 734 | other => {
|
716 | 735 | error!("Mechanism type {} is not supported.", other);
|
717 | 736 | Err(Error::NotSupported)
|
@@ -894,6 +913,14 @@ pub enum Mechanism<'a> {
|
894 | 913 | Sha256Hmac,
|
895 | 914 | /// GENERIC-SECRET-KEY-GEN mechanism
|
896 | 915 | GenericSecretKeyGen,
|
| 916 | + |
| 917 | + // HKDF |
| 918 | + /// HKDF key gen mechanism |
| 919 | + HkdfKeyGen, |
| 920 | + /// HKDF-DERIVE mechanism |
| 921 | + HkdfDerive(hkdf::HkdfParams<'a>), |
| 922 | + /// HKDF-DATA mechanism |
| 923 | + HkdfData(hkdf::HkdfParams<'a>), |
897 | 924 | }
|
898 | 925 |
|
899 | 926 | impl Mechanism<'_> {
|
@@ -957,6 +984,10 @@ impl Mechanism<'_> {
|
957 | 984 | Mechanism::Sha256Hmac => MechanismType::SHA256_HMAC,
|
958 | 985 |
|
959 | 986 | Mechanism::GenericSecretKeyGen => MechanismType::GENERIC_SECRET_KEY_GEN,
|
| 987 | + |
| 988 | + Mechanism::HkdfKeyGen => MechanismType::HKDF_KEY_GEN, |
| 989 | + Mechanism::HkdfDerive(_) => MechanismType::HKDF_DERIVE, |
| 990 | + Mechanism::HkdfData(_) => MechanismType::HKDF_DATA, |
960 | 991 | }
|
961 | 992 | }
|
962 | 993 | }
|
@@ -988,6 +1019,9 @@ impl From<&Mechanism<'_>> for CK_MECHANISM {
|
988 | 1019 | | Mechanism::Sha512RsaPkcsPss(params) => make_mechanism(mechanism, params),
|
989 | 1020 | Mechanism::RsaPkcsOaep(params) => make_mechanism(mechanism, params),
|
990 | 1021 | Mechanism::Ecdh1Derive(params) => make_mechanism(mechanism, params),
|
| 1022 | + Mechanism::HkdfDerive(params) | Mechanism::HkdfData(params) => { |
| 1023 | + make_mechanism(mechanism, params) |
| 1024 | + } |
991 | 1025 | // Mechanisms without parameters
|
992 | 1026 | Mechanism::AesKeyGen
|
993 | 1027 | | Mechanism::AesEcb
|
@@ -1023,7 +1057,8 @@ impl From<&Mechanism<'_>> for CK_MECHANISM {
|
1023 | 1057 | | Mechanism::Sha384RsaPkcs
|
1024 | 1058 | | Mechanism::Sha512RsaPkcs
|
1025 | 1059 | | Mechanism::Sha256Hmac
|
1026 |
| - | Mechanism::GenericSecretKeyGen => CK_MECHANISM { |
| 1060 | + | Mechanism::GenericSecretKeyGen |
| 1061 | + | Mechanism::HkdfKeyGen => CK_MECHANISM { |
1027 | 1062 | mechanism,
|
1028 | 1063 | pParameter: null_mut(),
|
1029 | 1064 | ulParameterLen: 0,
|
|
0 commit comments