pub struct HashXof<const SIZE: usize>(pub [u8; SIZE]);
Expand description

Extended Hash

Tuple Fields§

§0: [u8; SIZE]

Implementations§

source§

impl<const SIZE: usize> HashXof<SIZE>

source

pub fn from_bytes(bytes: &[u8; SIZE]) -> Self

From bytes

source

pub fn to_bytes(&self) -> &[u8; SIZE]

Transform into bytes

source

pub fn compute_from(data: &[u8]) -> HashXof<SIZE>

Compute from raw data

source

pub fn compute_from_tuple(data: &[&[u8]]) -> Self

Compute from tuple of byte arrays

source

pub fn to_bs58_check(&self) -> String

Serialize a Hash using bs58 encoding with checksum. Motivations for using base58 encoding:

base58_check is like base64 but-

  • fully standardized (no = vs /)
  • no weird characters (eg. +) only alphanumeric
  • ambiguous letters combined (eg. O vs 0, or l vs 1)
  • contains a checksum at the end to detect typing errors

Trait Implementations§

source§

impl<const SIZE: usize> BitXor<HashXof<SIZE>> for HashXof<SIZE>

§

type Output = HashXof<SIZE>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: Self) -> Self

Performs the ^ operation. Read more
source§

impl<const SIZE: usize> BitXorAssign<HashXof<SIZE>> for HashXof<SIZE>

source§

fn bitxor_assign(&mut self, rhs: Self)

Performs the ^= operation. Read more
source§

impl<const SIZE: usize> Clone for HashXof<SIZE>

source§

fn clone(&self) -> HashXof<SIZE>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const SIZE: usize> Debug for HashXof<SIZE>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<const SIZE: usize> Deserializer<HashXof<SIZE>> for HashXofDeserializer

source§

fn deserialize<'a, E: ParseError<&'a [u8]> + ContextError<&'a [u8]>>( &self, buffer: &'a [u8] ) -> IResult<&'a [u8], HashXof<SIZE>, E>

Example
use massa_hash::{HashXof, HASH_XOF_SIZE_BYTES, HashXofDeserializer};
use massa_serialization::{Serializer, Deserializer, DeserializeError};

let hash_deserializer = HashXofDeserializer::new();
let hash: HashXof<HASH_XOF_SIZE_BYTES> = HashXof::compute_from(&"hello world".as_bytes());
let (rest, deserialized) = hash_deserializer.deserialize::<DeserializeError>(hash.to_bytes()).unwrap();
assert_eq!(deserialized, hash);
assert_eq!(rest.len(), 0);
source§

impl<const SIZE: usize> Display for HashXof<SIZE>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<const SIZE: usize> PartialEq<HashXof<SIZE>> for HashXof<SIZE>

source§

fn eq(&self, other: &HashXof<SIZE>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<const SIZE: usize> Serializer<HashXof<SIZE>> for HashXofSerializer

source§

fn serialize( &self, value: &HashXof<SIZE>, buffer: &mut Vec<u8> ) -> Result<(), SerializeError>

Serialize a value T into a buffer of u8. Read more
source§

impl<const SIZE: usize> Copy for HashXof<SIZE>

source§

impl<const SIZE: usize> Eq for HashXof<SIZE>

source§

impl<const SIZE: usize> StructuralEq for HashXof<SIZE>

source§

impl<const SIZE: usize> StructuralPartialEq for HashXof<SIZE>

Auto Trait Implementations§

§

impl<const SIZE: usize> RefUnwindSafe for HashXof<SIZE>

§

impl<const SIZE: usize> Send for HashXof<SIZE>

§

impl<const SIZE: usize> Sync for HashXof<SIZE>

§

impl<const SIZE: usize> Unpin for HashXof<SIZE>

§

impl<const SIZE: usize> UnwindSafe for HashXof<SIZE>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.