wolf_crypto/kdf/mod.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 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
//! Key Derivation Functions
use crate::{can_cast_i32, can_cast_u32, const_can_cast_i32, const_can_cast_u32, to_u32};
use crate::sealed::AadSealed as Sealed;
use core::num::NonZeroU32;
use core::convert::Infallible;
use crate::buf::InvalidSize;
use crate::error::InvalidIters;
use core::fmt;
non_fips! {
mod hmac;
pub use hmac::hkdf;
pub use hmac::hkdf_into;
}
pub mod pbkdf;
#[doc(inline)]
pub use pbkdf::{pbkdf2, pbkdf2_into};
non_fips! {
#[doc(inline)]
pub use pbkdf::{pbkdf1, pbkdf1_into};
}
#[doc(inline)]
pub use crate::mac::hmac::algo::{
InsecureKey,
KeySlice,
Sha224, Sha256, Sha384, Sha512,
Sha3_224, Sha3_256, Sha3_384, Sha3_512
};
non_fips! {
#[doc(inline)]
pub use crate::mac::hmac::algo::{
Sha, Md5
};
}
/// The number of iterations for PBKDF.
///
/// The general rule is bigger is better (in terms of security), however, bigger is also more
/// computationally expensive.
///
/// `OWASP` recommends using at least 600,000 iterations with `SHA256` for passwords, a FIPS
/// requirement. [`NIST SP 800-132, Section 5.2`][1], back in 2010, recommends anywhere from 1,000
/// to 10,000,000 iterations (10,000,000 for critical secrets). **However** `SP 800-132` is under
/// [active revision][2], and the lower bound of 1,000 iterations is now considered inadequate for
/// modern security needs.
///
/// [1]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf#%5B%7B%22num%22%3A18%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C0%2C316%2Cnull%5D
/// [2]: https://csrc.nist.gov/News/2023/decision-to-revise-nist-sp-800-132
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
#[repr(transparent)]
pub struct Iters { count: NonZeroU32 }
impl fmt::Display for Iters {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_fmt(format_args!("Iters({})", self.count))
}
}
impl fmt::Debug for Iters {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
<Self as fmt::Display>::fmt(self, f)
}
}
impl Iters {
/// Create a new `Iters` instance.
///
/// # Note
///
/// Please see the [`Iters`] type documentation for more information and sources to assist in
/// picking the correct value. The value is context dependent, are you hashing a password?
/// You'll need a very large value, minimum 600,000. For key derivation, again it is context
/// dependent, how critical is this key? How powerful is the host machine? The general rule
/// is the bigger the value, the better in terms of security.
///
/// # Arguments
///
/// * `iters` - The desired number of iterations (must be non-zero).
///
/// # Returns
///
/// - `Some(Iters)`: The new `Iters` instance.
/// - `None`: The provided `iters` argument was zero.
pub const fn new(iters: u32) -> Option<Self> {
// Cool optimization rustc:
//
// define noundef i32 @new(i32 noundef returned %iters) unnamed_addr #0 {
// start:
// ret i32 %iters
// }
//
// This is practically a no-op due to NPO.
match NonZeroU32::new(iters) {
Some(count) => Some(Self { count }),
None => None
}
}
/// Create a new `Iters` instance without any safety checks.
///
/// # Safety
///
/// This will cause undefined behavior if the provided `iters` argument is `0`. Iters
/// may only be constructed with non-zero values (as the underlying type is [`NonZeroU32`]).
pub const unsafe fn new_unchecked(iters: u32) -> Self {
Self { count: NonZeroU32::new_unchecked(iters) }
}
/// Returns `true` if the iteration count can safely be cast to an `i32`.
///
/// Certain KDFs (such as the PBKDF family) take the iteration count as an `i32`, and check
/// at runtime if the iteration count is greater than 0. This most likely is an older design
/// choice which they must keep for stability reasons.
///
/// For ergonomic reasons, we will represent the iteration count as an unsigned int.
pub const fn is_valid_size(&self) -> bool {
self.get() <= i32::MAX as u32
}
/// Returns the contained iteration count as a `u32`.
#[inline]
#[must_use]
pub const fn get(&self) -> u32 {
self.count.get()
}
}
impl From<NonZeroU32> for Iters {
#[inline]
fn from(value: NonZeroU32) -> Self {
Self { count: value }
}
}
impl TryFrom<u32> for Iters {
type Error = InvalidIters;
/// Create a new `Iters` instance from a `u32`.
///
/// # Errors
///
/// If the number of iterations was zero.
#[inline]
fn try_from(value: u32) -> Result<Self, Self::Error> {
Self::new(value).ok_or(InvalidIters)
}
}
impl TryFrom<usize> for Iters {
type Error = InvalidIters;
/// Create a new `Iters` instance from a `usize`.
///
/// # Errors
///
/// - If the number of iterations was zero.
/// - If the number of iterations was greater than [`u32::MAX`].
#[inline]
fn try_from(value: usize) -> Result<Self, Self::Error> {
to_u32(value).and_then(Self::new).ok_or(InvalidIters)
}
}
pub mod salt {
//! Salt requirement marker types.
use super::{InvalidSize, Infallible, Salt, Sealed};
use core::marker::PhantomData;
use core::fmt;
/// Represents the minimum size for the [`Salt`].
///
/// [`Salt`]: super::Salt
pub trait MinSize : Sealed {
/// The associated error type for creating a [`SaltSlice`] with this constraint.
///
/// [`SaltSlice`]: super::SaltSlice
type CreateError;
/// Returns the minimum size for the [`Salt`].
///
/// [`Salt`]: super::Salt
fn min_size() -> u32;
}
macro_rules! def_sz {
($(
$(#[$meta:meta])*
$name:ident => $sz:literal => $err:ident
),* $(,)?) => {
$(
$(#[$meta])*
pub struct $name;
impl super::Sealed for $name {}
impl MinSize for $name {
type CreateError = $err;
#[inline]
fn min_size() -> u32 {
$sz
}
}
)*
};
}
def_sz! {
/// Indicates that the [`Salt`] may be empty / optional.
///
/// [`Salt`]: super::Salt
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
Empty => 0 => Infallible,
/// Indicates that the [`Salt`] **must** not be empty.
///
/// [`Salt`]: super::Salt
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
NonEmpty => 1 => InvalidSize,
/// Indicates that the [`Salt`] **must** be at least 128 bits (16 bytes).
///
/// [`Salt`]: super::Salt
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
Min16 => 16 => InvalidSize
}
/// A [`Salt`] with runtime flexibility.
///
/// The [`Salt`] trait, with its associated constraints, is implemented for most common types
/// which meet the marker constraint for pure compile-time checks. However, this can be
/// limiting, this type moves these compile-time checks to runtime.
#[repr(transparent)]
pub struct Slice<'s, SZ: MinSize> {
raw: &'s [u8],
_min_size: PhantomData<SZ>
}
impl<'s, SZ: MinSize> Clone for Slice<'s, SZ> {
#[inline]
fn clone(&self) -> Self { Self::create(self.raw) }
}
impl<'s, SZ: MinSize> AsRef<[u8]> for Slice<'s, SZ> {
#[inline]
fn as_ref(&self) -> &[u8] { self.raw }
}
impl<'s, SZ: MinSize> fmt::Debug for Slice<'s, SZ> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("Slice").field(&self.raw).finish()
}
}
macro_rules! impl_salt_for {
($sz:ty => { $item:item }) => {
impl<'s> Slice<'s, $sz> {
$item
}
};
}
impl_salt_for! { Empty => {
/// Create a new `SaltSlice` instance.
///
/// # Arguments
///
/// * `slice` - The [`Salt`] (if any) to use.
///
/// # Errors
///
/// This is infallible, the only reason this returns a result is to keep this `new`
/// implementation in sync with other [`Salt`] constraints (this being the weakest / most
/// permissive constraint).
pub const fn new(slice: &'s [u8]) -> Result<Self, Infallible> {
Ok(Self::create(slice))
}
}}
impl_salt_for! { NonEmpty => {
/// Create a new `SaltSlice` instance.
///
/// # Arguments
///
/// * `slice` - The [`Salt`], which must be non-empty.
///
/// # Errors
///
/// This requires the provided slice to be **non-empty**, this is the second-weakest
/// constraint, and only leveraged with `allow-non-fips` enabled. In general, for KDFs such
/// as PBKDF it is **strongly recommended** to use at least a 128 bit (16 byte) salt
/// generated from a valid `CSPRNG`.
pub const fn new(slice: &'s [u8]) -> Result<Self, InvalidSize> {
if !slice.is_empty() {
Ok(Self::create(slice))
} else {
Err(InvalidSize)
}
}
}}
impl_salt_for! { Min16 => {
/// Create a new `SaltSlice` instance.
///
/// # Arguments
///
/// * `slice` - The [`Salt`], which must be at least 128 bits (16 bytes).
///
/// # Errors
///
/// This requires that the provided slice is **at least** 128 bits (16 bytes), this is the
/// strongest constraint as it enforces this best practice (as well as FIPS requirement).
/// Regardless if the interface requires this constraint it is **strongly recommended** to
/// use a 128 bit salt generated from a valid `CSPRNG`.
pub const fn new(slice: &'s [u8]) -> Result<Self, InvalidSize> {
if slice.len() >= 16 {
Ok(Self::create(slice))
} else {
Err(InvalidSize)
}
}
}}
impl<'s, SZ: MinSize> Slice<'s, SZ> {
#[inline]
const fn create(raw: &'s [u8]) -> Self {
Self { raw, _min_size: PhantomData }
}
}
macro_rules! impl_salt_try_from {
($ty:ty) => {
impl<'s> TryFrom<&'s [u8]> for Slice<'s, $ty> {
type Error = <$ty as MinSize>::CreateError;
#[inline]
fn try_from(value: &'s [u8]) -> Result<Self, Self::Error> {
Self::new(value)
}
}
};
}
impl_salt_try_from! { NonEmpty }
impl_salt_try_from! { Min16 }
impl<'s> From<&'s [u8]> for Slice<'s, Empty> {
#[inline]
fn from(value: &'s [u8]) -> Self {
Self::create(value)
}
}
impl<'s> From<&'s [u8; 16]> for Slice<'s, Min16> {
#[inline]
fn from(value: &'s [u8; 16]) -> Self {
Self::create(value)
}
}
impl<'s, SZ: MinSize> Sealed for Slice<'s, SZ> {}
macro_rules! impl_salt_slice {
($for:ident allows $with:ident) => {
impl<'s> Salt<$for> for Slice<'s, $with> {
#[inline]
fn size(&self) -> u32 {
debug_assert!($crate::can_cast_u32(self.raw.len()));
self.raw.len() as u32
}
#[inline]
fn is_valid_size(&self) -> bool {
$crate::can_cast_u32(self.raw.len())
}
#[inline]
fn i_size(&self) -> i32 {
debug_assert!($crate::can_cast_i32(self.raw.len()));
self.raw.len() as i32
}
#[inline]
fn i_is_valid_size(&self) -> bool {
$crate::can_cast_i32(self.raw.len())
}
#[inline]
fn ptr(&self) -> *const u8 {
self.raw.as_ptr()
}
}
};
}
impl_salt_slice! { Empty allows Empty }
impl_salt_slice! { Empty allows NonEmpty }
impl_salt_slice! { Empty allows Min16 }
impl_salt_slice! { NonEmpty allows NonEmpty }
impl_salt_slice! { NonEmpty allows Min16 }
impl_salt_slice! { Min16 allows Min16 }
}
/// Represents a salt value used in key derivation functions (KDFs).
///
/// This is only implemented for `HKDF`, as other KDFs require salts (such as the `PBKDF`
/// family), and for FIPS compliance, as per [NIST SP 800-132, Section 5.1, The Salt (S)][1]
/// this salt must be at least 128 bits from a valid CSPRNG.
///
/// Salt is a critical component in KDFs, used to:
/// - Increase the complexity of the derived key
/// - Mitigate rainbow table attacks
/// - Ensure unique keys even when the same input is used multiple times
///
/// Salts may be optional, this depends on the `MinSz` type.
///
/// [1]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf#%5B%7B%22num%22%3A18%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C0%2C475%2Cnull%5D
pub trait Salt<SZ: salt::MinSize>: Sealed {
#[doc(hidden)]
#[must_use]
fn size(&self) -> u32;
#[doc(hidden)]
#[must_use]
fn is_valid_size(&self) -> bool;
#[doc(hidden)]
#[must_use]
fn i_size(&self) -> i32;
#[doc(hidden)]
#[must_use]
fn i_is_valid_size(&self) -> bool;
#[doc(hidden)]
#[must_use]
fn ptr(&self) -> *const u8;
}
impl Salt<salt::Empty> for &[u8] {
#[inline]
fn size(&self) -> u32 {
debug_assert!(can_cast_u32(self.len()));
self.len() as u32
}
#[inline]
fn is_valid_size(&self) -> bool {
can_cast_u32(self.len())
}
#[inline]
fn i_size(&self) -> i32 {
debug_assert!(can_cast_i32(self.len()));
self.len() as i32
}
#[inline]
fn i_is_valid_size(&self) -> bool {
can_cast_i32(self.len())
}
#[inline]
fn ptr(&self) -> *const u8 {
self.as_ptr()
}
}
impl<const C: usize> Salt<salt::Empty> for [u8; C] {
#[inline]
fn size(&self) -> u32 {
debug_assert!(const_can_cast_u32::<C>());
self.len() as u32
}
#[inline]
fn is_valid_size(&self) -> bool {
const_can_cast_u32::<C>()
}
#[inline]
fn i_size(&self) -> i32 {
debug_assert!(const_can_cast_i32::<C>());
C as i32
}
#[inline]
fn i_is_valid_size(&self) -> bool {
const_can_cast_i32::<C>()
}
#[inline]
fn ptr(&self) -> *const u8 {
self.as_ptr()
}
}
macro_rules! impl_salt_for_sizes {
($constraint:ty => [$($sz:literal),*]) => {
$(
impl Salt<$constraint> for [u8; $sz] {
#[inline]
fn size(&self) -> u32 { $sz }
#[inline]
fn is_valid_size(&self) -> bool { true }
#[inline]
fn i_size(&self) -> i32 { $sz }
#[inline]
fn i_is_valid_size(&self) -> bool { true }
#[inline]
fn ptr(&self) -> *const u8 { self.as_ptr() }
}
)*
};
}
impl_salt_for_sizes! { salt::Min16 => [
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 48, 64
]}
impl_salt_for_sizes! { salt::NonEmpty => [
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, 48, 64
]}
impl Salt<salt::Empty> for () {
#[inline]
fn size(&self) -> u32 {
0
}
#[inline]
fn is_valid_size(&self) -> bool {
true
}
#[inline]
fn i_size(&self) -> i32 {
0
}
#[inline]
fn i_is_valid_size(&self) -> bool {
true
}
#[inline]
fn ptr(&self) -> *const u8 {
core::ptr::null()
}
}
impl<T: Salt<SZ>, SZ: salt::MinSize> Salt<SZ> for &T {
#[inline]
fn size(&self) -> u32 {
<T as Salt<SZ>>::size(self)
}
#[inline]
fn is_valid_size(&self) -> bool {
<T as Salt<SZ>>::is_valid_size(self)
}
#[inline]
fn i_size(&self) -> i32 {
<T as Salt<SZ>>::i_size(self)
}
#[inline]
fn i_is_valid_size(&self) -> bool {
<T as Salt<SZ>>::i_is_valid_size(self)
}
#[inline]
fn ptr(&self) -> *const u8 {
<T as Salt<SZ>>::ptr(self)
}
}
impl<T: Salt<SZ>, SZ: salt::MinSize> Salt<SZ> for &mut T {
#[inline]
fn size(&self) -> u32 {
<T as Salt<SZ>>::size(self)
}
#[inline]
fn is_valid_size(&self) -> bool {
<T as Salt<SZ>>::is_valid_size(self)
}
#[inline]
fn i_size(&self) -> i32 {
<T as Salt<SZ>>::i_size(self)
}
#[inline]
fn i_is_valid_size(&self) -> bool {
<T as Salt<SZ>>::i_is_valid_size(self)
}
#[inline]
fn ptr(&self) -> *const u8 {
<T as Salt<SZ>>::ptr(self)
}
}
impl<T: Salt<salt::Empty>> Salt<salt::Empty> for Option<T> {
#[inline]
fn size(&self) -> u32 {
self.as_ref().map_or(0, <T as Salt<salt::Empty>>::size)
}
#[inline]
fn is_valid_size(&self) -> bool {
self.as_ref().map_or(true, <T as Salt<salt::Empty>>::is_valid_size)
}
#[inline]
fn i_size(&self) -> i32 {
self.as_ref().map_or(0, <T as Salt<salt::Empty>>::i_size)
}
#[inline]
fn i_is_valid_size(&self) -> bool {
self.as_ref().map_or(true, <T as Salt<salt::Empty>>::i_is_valid_size)
}
#[inline]
fn ptr(&self) -> *const u8 {
self.as_ref().map_or_else(core::ptr::null, <T as Salt<salt::Empty>>::ptr)
}
}
/// A [`salt::Slice`] which meets the FIPS requirement (128 bits) in length.
pub type FipsSaltSlice<'s> = salt::Slice<'s, salt::Min16>;
/// A [`salt::Slice`] which must not be empty.
pub type SaltSlice<'s> = salt::Slice<'s, salt::NonEmpty>;
/// A [`salt::Slice`] which may be left empty.
pub type MaybeSaltSlice<'s> = salt::Slice<'s, salt::Empty>;
#[cfg(not(feature = "allow-non-fips"))]
/// A [`salt::Slice`] which will be a [`FipsSaltSlice`] if the `allow-non-fips` feature is disabled,
/// or a [`SaltSlice`] if the feature is enabled.
///
/// # Notes
///
/// - In FIPS mode (`allow-non-fips` is disabled), this type ensures that the salt meets the
/// FIPS minimum requirement of 128 bits.
/// - In non-FIPS mode (`allow-non-fips` is enabled), this type allows more relaxed salt constraints.
pub type DynSaltSlice<'s> = FipsSaltSlice<'s>;
#[cfg(feature = "allow-non-fips")]
/// A [`salt::Slice`] which will be a [`FipsSaltSlice`] if the `allow-non-fips` feature is disabled,
/// or a [`SaltSlice`] if the feature is enabled.
///
/// # Notes
///
/// - In FIPS mode (`allow-non-fips` is disabled), this type ensures that the salt meets the
/// FIPS minimum requirement of 128 bits.
/// - In non-FIPS mode (`allow-non-fips` is enabled), this type allows more relaxed salt constraints.
pub type DynSaltSlice<'s> = SaltSlice<'s>;
#[cfg(test)]
mod foolery {
use core::mem;
use super::*;
#[test]
fn foolery() {
dbg!(mem::size_of::<Option<NonZeroU32>>());
dbg!(mem::size_of::<Option<Iters>>());
dbg!(mem::align_of::<Option<Iters>>());
dbg!(mem::align_of::<Option<NonZeroU32>>());
}
}