Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blake2: add unkeyed hashing #612

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 34 additions & 21 deletions blake2/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ macro_rules! blake2_mac_impl {
core: $hash,
buffer: LazyBuffer<<$hash as BlockSizeUser>::BlockSize>,
#[cfg(feature = "reset")]
key_block: Key<Self>,
key_block: Option<Key<Self>>,
_out: PhantomData<OutSize>,
}

Expand All @@ -286,35 +286,42 @@ macro_rules! blake2_mac_impl {
{
/// Create new instance using provided key, salt, and persona.
///
/// Setting key to `None` indicates unkeyed usage.
///
/// # Errors
///
/// Key length should not be empty or bigger than the block size and
/// the salt and persona length should not be bigger than quarter of
/// block size. If any of those conditions is false the method will
/// return an error.
/// If key is `Some`, then its length should not be zero or bigger
/// than the block size. The salt and persona length should not be
/// bigger than quarter of block size. If any of those conditions is
/// false the method will return an error.
#[inline]
pub fn new_with_salt_and_personal(
key: &[u8],
key: Option<&[u8]>,
salt: &[u8],
persona: &[u8],
) -> Result<Self, InvalidLength> {
let kl = key.len();
let kl = key.map_or(0, |k| k.len());
let bs = <$hash as BlockSizeUser>::BlockSize::USIZE;
let qbs = bs / 4;
if kl == 0 || kl > bs || salt.len() > qbs || persona.len() > qbs {
if key.is_some() && kl == 0 || kl > bs || salt.len() > qbs || persona.len() > qbs {
return Err(InvalidLength);
}
let mut padded_key = Block::<$hash>::default();
padded_key[..kl].copy_from_slice(key);
let buffer = if let Some(k) = key {
let mut padded_key = Block::<$hash>::default();
padded_key[..kl].copy_from_slice(k);
LazyBuffer::new(&padded_key)
} else {
LazyBuffer::default()
};
Ok(Self {
core: <$hash>::new_with_params(salt, persona, key.len(), OutSize::USIZE),
buffer: LazyBuffer::new(&padded_key),
core: <$hash>::new_with_params(salt, persona, kl, OutSize::USIZE),
buffer,
#[cfg(feature = "reset")]
key_block: {
key_block: key.map(|k| {
let mut t = Key::<Self>::default();
t[..kl].copy_from_slice(key);
t[..kl].copy_from_slice(k);
t
},
}),
_out: PhantomData,
})
}
Expand Down Expand Up @@ -353,7 +360,7 @@ macro_rules! blake2_mac_impl {
key_block: {
let mut t = Key::<Self>::default();
t[..kl].copy_from_slice(key);
t
Some(t)
},
_out: PhantomData,
})
Expand Down Expand Up @@ -402,10 +409,14 @@ macro_rules! blake2_mac_impl {
{
fn reset(&mut self) {
self.core.reset();
let kl = self.key_block.len();
let mut padded_key = Block::<$hash>::default();
padded_key[..kl].copy_from_slice(&self.key_block);
self.buffer = LazyBuffer::new(&padded_key);
self.buffer = if let Some(k) = self.key_block {
let kl = k.len();
let mut padded_key = Block::<$hash>::default();
padded_key[..kl].copy_from_slice(&k);
LazyBuffer::new(&padded_key)
} else {
LazyBuffer::default()
}
}
}

Expand Down Expand Up @@ -453,7 +464,9 @@ macro_rules! blake2_mac_impl {
// `self.core` zeroized by its `Drop` impl
self.buffer.zeroize();
#[cfg(feature = "reset")]
self.key_block.zeroize();
if let Some(mut key_block) = self.key_block {
key_block.zeroize();
}
}
}
}
Expand Down
8 changes: 6 additions & 2 deletions blake2/tests/mac.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ fn blake2b_new_test() {

#[test]
fn mac_refuses_empty_keys() {
assert!(blake2::Blake2bMac512::new_with_salt_and_personal(&[], b"salt", b"persona").is_err());
assert!(blake2::Blake2sMac256::new_with_salt_and_personal(&[], b"salt", b"persona").is_err());
assert!(
blake2::Blake2bMac512::new_with_salt_and_personal(Some(&[]), b"salt", b"persona").is_err()
);
assert!(
blake2::Blake2sMac256::new_with_salt_and_personal(Some(&[]), b"salt", b"persona").is_err()
);
}
4 changes: 2 additions & 2 deletions blake2/tests/persona.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fn blake2s_persona() {
"101112131415161718191a1b1c1d1e1f"
);
let persona = b"personal";
let ctx = Blake2sMac256::new_with_salt_and_personal(&key, &[], persona).unwrap();
let ctx = Blake2sMac256::new_with_salt_and_personal(Some(&key), &[], persona).unwrap();
assert_eq!(
ctx.finalize_fixed(),
hex!(
Expand All @@ -25,7 +25,7 @@ fn blake2b_persona() {
"101112131415161718191a1b1c1d1e1f"
);
let persona = b"personal";
let ctx = Blake2bMac512::new_with_salt_and_personal(&key, &[], persona).unwrap();
let ctx = Blake2bMac512::new_with_salt_and_personal(Some(&key), &[], persona).unwrap();
assert_eq!(
ctx.finalize_fixed(),
hex!(
Expand Down
28 changes: 28 additions & 0 deletions blake2/tests/unkeyed.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
use blake2::{digest::FixedOutput, Blake2bMac512, Blake2sMac256};
use hex_literal::hex;

#[test]
fn blake2s_unkeyed() {
let ctx = Blake2sMac256::new_with_salt_and_personal(None, b"salt", b"persona").unwrap();
assert_eq!(
ctx.finalize_fixed(),
hex!(
"d7de83e2b1fedd9755db747235b7ba4b"
"f9773a16b91c6b241e4b1d926160d9eb"
),
);
}

#[test]
fn blake2b_unkeyed() {
let ctx = Blake2bMac512::new_with_salt_and_personal(None, b"salt", b"persona").unwrap();
assert_eq!(
ctx.finalize_fixed(),
hex!(
"fa3cd38902ae0602d8f0066f18c579fa"
"e8068074fbe91f9f5774f841f5ab51fe"
"39140ad78d6576f8a0b9f8f4c2642211"
"11c9911d8ba1dbefcd034acdbedb8cde"
),
);
}
Loading