wolf_crypto/mac/hmac/algo.rs
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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
//! Collection of marker types and their associated keys which denote the hashing function.
use core::marker::PhantomData;
use wolf_crypto_sys::{
WC_SHA224, WC_SHA256, WC_SHA384, WC_SHA512,
WC_SHA3_224, WC_SHA3_256, WC_SHA3_384, WC_SHA3_512
};
use zeroize::Zeroize;
use crate::sealed::HmacSealed as Sealed;
use crate::sealed::HmacDigestSealed as SealedDigest;
use crate::buf::InvalidSize;
use crate::can_cast_u32;
non_fips! {
use wolf_crypto_sys::{WC_MD5, WC_SHA};
}
/// Represents a valid key size for the associated hashing algorithm.
pub trait KeySz : Sealed {
/// Returns the associated size as a `u32`.
///
/// This size is equivalent to the digest size of the hash function.
#[must_use]
fn size() -> u32;
}
/// Represents a valid key for the associated hashing algorithm..
pub trait GenericKey : Sealed {
/// The desired size of the key.
type Size: KeySz;
#[doc(hidden)]
#[must_use]
fn ptr(&self) -> *const u8;
/// Returns the size of the key in bytes.
fn size(&self) -> u32;
/// Zeroes the memory of the key if is owned.
fn cleanup(self);
}
/// Represents the hex-encoded output digest of the `HMAC` hash functions.
pub trait HexDigest : SealedDigest + AsRef<[u8]> + AsMut<[u8]> + Copy {
/// The associated hex-decoded digest type.
type Digest: Digest;
#[doc(hidden)]
#[must_use]
fn zeroes() -> Self;
}
/// Represents the output digest of the `HMAC` hash function.
pub trait Digest : Sealed + AsRef<[u8]> + AsMut<[u8]> + Copy {
/// The associated hex-encoded digest type.
type Hex: HexDigest;
#[doc(hidden)]
#[must_use]
fn zeroes() -> Self;
/// Returns the size of the digest in bytes.
#[must_use]
fn size() -> u32;
#[doc(hidden)]
#[must_use]
fn ptr(&mut self) -> *mut u8;
}
/// Indicates the hashing algorithm to use with message authentication codes and key derivation
/// functions.
pub trait Hash : Sealed {
/// Represents the output digest of the hash function.
type Digest: Digest;
/// The associated key length for this hashing function.
///
/// In [`RFC2104`, Section 3 `Keys`][1], it states that the key for `HMAC` can be of any length,
/// **however** keys less than length `L` (the length of the output (SHA256 being 256 bits)) are
/// strongly discouraged and considered insecure.
///
/// This library does not support using keys which do not follow this recommendation in the
/// secure API. If you are not able to follow these best practices, see [`InsecureKey`],
/// though this is strongly discouraged.
///
/// All modern usages of `HMAC`, for example in TLS, use the same key length as the digest
/// length (`L`).
///
/// These recommendations remain unaltered for key derivation functions.
///
/// ## Larger Keys
///
/// As pointed out in [`RFC2104`, section 3 `Keys`][1] the provided key material may be larger
/// than the length of the output. This can be done via the [`KeySlice`] type. In general there
/// won't be any real advantage to this, however this is with an exception, as stated:
///
/// ```txt
/// A longer key may be advisable if the randomness of the key is
/// considered weak.
/// ```
///
/// Keys larger than the digest / hash output size will be hashed.
///
/// [1]: https://www.rfc-editor.org/rfc/rfc2104#section-3
type KeyLen: KeySz;
#[doc(hidden)]
#[must_use]
fn type_id() -> core::ffi::c_int;
}
// Key sizes correspond to the digest size pursuant to RFC2104, and all relevant
// NIST SP recommendations.
macro_rules! make_digest {
($(($name:ident, $sz:literal)),* $(,)?) => {
$(
impl SealedDigest for [u8; crate::ct::hex_encode_len($sz)] {}
impl HexDigest for [u8; crate::ct::hex_encode_len($sz)] {
type Digest = [u8; $sz];
#[inline]
fn zeroes() -> Self {
[0u8; crate::ct::hex_encode_len($sz)]
}
}
impl Sealed for [u8; $sz] {}
impl Digest for [u8; $sz] {
type Hex = [u8; crate::ct::hex_encode_len($sz)];
#[inline]
fn zeroes() -> Self {
[0u8; $sz]
}
#[inline]
fn size() -> u32 {
$sz
}
#[inline]
fn ptr(&mut self) -> *mut u8 {
self.as_mut_ptr()
}
}
#[doc = concat!(
"Generic representation of a ", stringify!($sz), " byte key for `HMAC` or KDFs."
)]
#[doc = ""]
#[doc = "It is strongly recommended that the key length is equivalent "]
#[doc = "to the hash functions digest size. (SHA256 means 256 bit (32 byte) key)."]
pub struct $name;
impl Sealed for $name {}
impl KeySz for $name {
#[inline]
fn size() -> u32 {
Self::SIZE
}
}
impl $name {
/// The associated `u32` representation.
pub const SIZE: u32 = $sz;
pub(crate) const USIZE: usize = $sz;
}
impl GenericKey for [u8; $sz] {
type Size = $name;
#[inline]
fn ptr(&self) -> *const u8 {
self.as_ptr()
}
#[inline]
fn size(&self) -> u32 {
<$name>::SIZE
}
#[inline]
fn cleanup(mut self) {
self.zeroize();
}
}
impl Sealed for &[u8; $sz] {}
impl GenericKey for &[u8; $sz] {
type Size = $name;
#[inline]
fn ptr(&self) -> *const u8 {
self.as_ptr()
}
#[inline]
fn size(&self) -> u32 {
<$name>::SIZE
}
#[inline(always)]
fn cleanup(self) {}
}
)*
};
}
/// Represents a key for the associated hashing algorithm which has a length greater than or
/// equal to the length of the hash function's digest.
#[repr(transparent)]
pub struct KeySlice<'k, SZ: KeySz> {
inner: &'k [u8],
_min_size: PhantomData<SZ>
}
impl<'k, SZ: KeySz> Sealed for KeySlice<'k, SZ> {}
impl<'k, SZ: KeySz> GenericKey for KeySlice<'k, SZ> {
type Size = SZ;
#[inline]
fn ptr(&self) -> *const u8 {
self.inner.as_ptr()
}
#[inline]
fn size(&self) -> u32 {
// KeySlice cannot be constructed with a slice which has a length greater than u32::MAX.
self.inner.len() as u32
}
#[inline(always)]
fn cleanup(self) {}
}
impl<'k, SZ: KeySz> KeySlice<'k, SZ> {
/// Try creating a new `KeySlice` instance.
///
/// # Errors
///
/// - If the length of the `slice` is less than the [`SZ::size`][1].
/// - If the length of the `slice` is greater than [`u32::MAX`].
///
/// [1]: KeySz::size
#[inline]
pub fn new(slice: &'k [u8]) -> Result<Self, InvalidSize> {
if slice.len() < SZ::size() as usize || !can_cast_u32(slice.len()) {
Err(InvalidSize)
} else {
Ok(Self { inner: slice, _min_size: PhantomData })
}
}
}
impl<'k, SZ: KeySz> TryFrom<&'k [u8]> for KeySlice<'k, SZ> {
type Error = InvalidSize;
/// Try creating a new `KeySlice` instance.
///
/// # Errors
///
/// - If the length of the `slice` is less than the [`SZ::size`][1].
/// - If the length of the `slice` is greater than [`u32::MAX`].
///
/// [1]: KeySz::size
#[inline]
fn try_from(value: &'k [u8]) -> Result<Self, Self::Error> {
Self::new(value)
}
}
/// Represents a key associated with the desired hashing function which can be **insecure**.
///
/// # Security
///
/// It is **not recommended** to use this unless you have a very good reason. This reason in general
/// should be legacy system compatibility, modern systems without this constant
/// **should not leverage this**, instead, use the [`KeySlice`], or provide the exact key
/// corresponding to the digest size of the underlying hashing function.
///
/// # FIPS Compliance
///
/// Using this plays into `FIPS` compliance, **without** this crate's `allow-non-fips` feature
/// enabled, this **cannot be constructed with a key smaller than the acceptable FIPS standard**
/// of 14 bytes.
///
/// For more information, See [FIPS 198-1, Section 3 Cryptographic Keys][1] reference to
/// [NIST SP 800-107][2]. Which discusses this minimum security strength of 112 bits (14 bytes) in
/// [SP 800-107, Section 5.2 Digital Signatures][3] and [SP 800-107 Section 5.3.2 The HMAC Key][4].
///
/// [1]: https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.198-1.pdf#%5B%7B%22num%22%3A20%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C0%2C792%2Cnull%5D
/// [2]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-107r1.pdf
/// [3]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-107r1.pdf#%5B%7B%22num%22%3A28%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C88%2C463%2C0%5D
/// [4]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-107r1.pdf#%5B%7B%22num%22%3A35%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C88%2C139%2C0%5D
#[repr(transparent)]
pub struct InsecureKey<'k, SZ: KeySz> {
inner: &'k [u8],
_min_size: PhantomData<SZ>
}
impl<'k, SZ: KeySz> InsecureKey<'k, SZ> {
/// Minimum Size without FIPS requirement (1)
#[cfg(feature = "allow-non-fips")]
const MIN_SIZE: usize = 1;
/// Minimum Size with FIPS requirement (14)
#[cfg(not(feature = "allow-non-fips"))]
const MIN_SIZE: usize = 14;
#[inline]
#[must_use]
const fn new_predicate(len: usize) -> bool {
(len >= Self::MIN_SIZE) && can_cast_u32(len)
}
/// Create a new [`InsecureKey`] instance.
///
/// # Security
///
/// Please read the [`InsecureKey`]'s type documentation regarding security, and why it is
/// strongly recommended to use safer, more secure alternatives like [`KeySlice`] or passing
/// a key of the underlying hash functions digest length for compile-time checks.
///
/// # Errors
///
/// This will return `InvalidSize` on conditions dependent on the `allow-non-fips` feature
/// flag.
///
/// - `allow-non-fips` enabled:
/// This will return `InvalidSize` if the provided key is empty.
/// - `allow-non-fips` disabled:
/// Pursuant to the FIPS requirements for HMAC and KDFs (for more information again read the
/// [`InsecureKey`]'s type documentation), this will return `InvalidSize` if the provided
/// key is shorter than the minimum acceptable FIPS standard of 14 bytes.
/// - any configuration:
/// Regardless of the enabled feature flags, if the length of the key is greater than
/// [`u32::MAX`] this will return `InvalidSize`.
pub const fn new(slice: &'k [u8]) -> Result<Self, InvalidSize> {
if Self::new_predicate(slice.len()) {
Ok(Self { inner: slice, _min_size: PhantomData })
} else {
Err(InvalidSize)
}
}
}
impl<'k, SZ: KeySz> Sealed for InsecureKey<'k, SZ> {}
impl<'k, SZ: KeySz> GenericKey for InsecureKey<'k, SZ> {
type Size = SZ;
#[inline]
fn ptr(&self) -> *const u8 {
self.inner.as_ptr()
}
#[inline]
fn size(&self) -> u32 {
// InsecureKey cannot be constructed with a slice which has a length greater than u32::MAX.
self.inner.len() as u32
}
#[inline(always)]
fn cleanup(self) {}
}
impl<'k, SZ: KeySz> TryFrom<&'k [u8]> for InsecureKey<'k, SZ> {
type Error = InvalidSize;
/// Create a new [`InsecureKey`] instance.
///
/// # Security
///
/// Please read the [`InsecureKey`]'s type documentation regarding security, and why it is
/// strongly recommended to use safer, more secure alternatives like [`KeySlice`] or passing
/// a key of the underlying hash functions digest length for compile-time checks.
///
/// # Errors
///
/// This will return `InvalidSize` on conditions dependent on the `allow-non-fips` feature
/// flag.
///
/// - `allow-non-fips` enabled:
/// This will return `InvalidSize` if the provided key is empty.
/// - `allow-non-fips` disabled:
/// Pursuant to the FIPS requirements for HMAC and KDFs (for more information again read the
/// [`InsecureKey`]'s type documentation), this will return `InvalidSize` if the provided
/// key is shorter than the minimum acceptable FIPS standard of 14 bytes.
/// - any configuration:
/// Regardless of the enabled feature flags, if the length of the key is greater than
/// [`u32::MAX`] this will return `InvalidSize`.
#[inline]
fn try_from(value: &'k [u8]) -> Result<Self, Self::Error> {
Self::new(value)
}
}
macro_rules! make_algo_type {
($((
$(#[$meta:meta])*
$name:ident,
$sz:ident,
$wc_ty:ident
)),* $(,)?) => {
$(
$(#[$meta])*
pub struct $name;
impl Sealed for $name {}
impl Hash for $name {
type Digest = [u8; $sz::USIZE];
type KeyLen = $sz;
#[inline]
fn type_id() -> ::core::ffi::c_int {
// This is a silly assertion as the maximum constant for wc_ty is 13.
debug_assert!($wc_ty <= i32::MAX as ::core::ffi::c_uint);
$wc_ty as ::core::ffi::c_int
}
}
)*
};
}
#[cfg_attr(docsrs, doc(cfg(feature = "allow-non-fips")))]
#[cfg(feature = "allow-non-fips")]
make_digest! { (U16, 16), (U20, 20) }
make_digest! { (U28, 28), (U32, 32), (U48, 48), (U64, 64) }
#[cfg_attr(docsrs, doc(cfg(feature = "allow-non-fips")))]
#[cfg(feature = "allow-non-fips")]
make_algo_type! {
(
/// The `MD5` Hash Function Marker Type.
///
/// `MD5` should be [considered cryptographically broken and unsuitable for further use][1].
/// Collision attacks against `MD5` are both practical and trivial, theoretical attacks
/// against `MD5` have been found.
///
/// `MD5` is included in this library for legacy reasons only.
///
/// [1]: https://www.kb.cert.org/vuls/id/836068
Md5, U16, WC_MD5
),
(
/// The `SHA-1` Hash Function Marker Type.
///
/// The SHA-1 algorithm is included in this library for legacy reasons only. It is
/// cryptographically broken and should not be used for any security-critical or modern
/// applications, especially digital signatures or certificate validation.
///
/// The U.S. National Institute of Standards and Technology (NIST) has officially deprecated
/// SHA-1 for all digital signature use cases as of 2011. As of 2022, NIST recommends
/// transitioning all applications from SHA-1 to SHA-2 or SHA-3 family of hash functions.
Sha, U20, WC_SHA
)
}
make_algo_type! {
(
/// The `SHA224` Hash Function Marker Type.
Sha224, U28, WC_SHA224
),
(
/// The `SHA256` Hash Function Marker Type.
Sha256, U32, WC_SHA256
),
(
/// The `SHA384` Hash Function Marker Type.
Sha384, U48, WC_SHA384
),
(
/// The `SHA512` Hash Function Marker Type.
Sha512, U64, WC_SHA512
),
(
/// The `SHA3-224` Hash Function Marker Type.
Sha3_224, U28, WC_SHA3_224
),
(
/// The `SHA3-256` Hash Function Marker Type.
Sha3_256, U32, WC_SHA3_256
),
(
/// The `SHA3-384` Hash Function Marker Type.
Sha3_384, U48, WC_SHA3_384
),
(
/// The `SHA3-512` Hash Function Marker Type.
Sha3_512, U64, WC_SHA3_512
)
}