1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-10 16:56:04 +02:00

Add support for rkyv

This commit is contained in:
William Batista 2023-10-09 17:04:43 -04:00
parent dd30dcb002
commit ee310314cd
No known key found for this signature in database
GPG Key ID: 5F69AE52CA83B3F6
2 changed files with 46 additions and 1 deletions

View File

@ -89,7 +89,7 @@ no_neon = []
[package.metadata.docs.rs]
# Document the rayon/mmap methods and the Serialize/Deserialize/Zeroize impls on docs.rs.
features = ["mmap", "rayon", "serde", "zeroize"]
features = ["mmap", "rayon", "serde", "zeroize", "rkyv"]
[dependencies]
arrayref = "0.3.5"
@ -101,6 +101,7 @@ memmap2 = { version = "0.7.1", optional = true }
rayon = { version = "1.2.1", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"], optional = true }
rkyv = { version = "0.7", features = ["validation"], optional = true }
[dev-dependencies]
hmac = "0.12.0"

View File

@ -218,6 +218,11 @@ fn counter_high(counter: u64) -> u32 {
/// [`FromStr`]: https://doc.rust-lang.org/std/str/trait.FromStr.html
#[cfg_attr(feature = "zeroize", derive(zeroize::Zeroize))]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
#[cfg_attr(
feature = "rkyv",
derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(feature = "rkyv", archive(check_bytes))]
#[derive(Clone, Copy, Hash)]
pub struct Hash([u8; OUT_LEN]);
@ -331,6 +336,45 @@ impl PartialEq<[u8]> for Hash {
impl Eq for Hash {}
#[cfg(feature = "rkyv")]
/// This implementation is constant-time.
impl PartialEq for ArchivedHash {
#[inline]
fn eq(&self, other: &ArchivedHash) -> bool {
constant_time_eq::constant_time_eq_32(&self.0, &other.0)
}
}
#[cfg(feature = "rkyv")]
/// This implementation is constant-time.
impl PartialEq<[u8; OUT_LEN]> for ArchivedHash {
#[inline]
fn eq(&self, other: &[u8; OUT_LEN]) -> bool {
constant_time_eq::constant_time_eq_32(&self.0, other)
}
}
#[cfg(feature = "rkyv")]
/// This implementation is constant-time if the target is 32 bytes long.
impl PartialEq<[u8]> for ArchivedHash {
#[inline]
fn eq(&self, other: &[u8]) -> bool {
constant_time_eq::constant_time_eq(&self.0, other)
}
}
#[cfg(feature = "rkyv")]
/// This implementation is constant-time if the target is 32 bytes long.
impl PartialEq<Hash> for ArchivedHash {
#[inline]
fn eq(&self, other: &Hash) -> bool {
constant_time_eq::constant_time_eq(&self.0, &other.0)
}
}
#[cfg(feature = "rkyv")]
impl Eq for ArchivedHash {}
impl fmt::Display for Hash {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
// Formatting field as `&str` to reduce code size since the `Debug`