Struct sodiumoxide::crypto::pwhash::scryptsalsa208sha256::HashedPassword [] [src]

#[must_use]
pub struct HashedPassword(pub [u8; 102]);

HashedPasswordis a password verifier generated from a password

A HashedPassword is zero-terminated, includes only ASCII characters and can be conveniently stored into SQL databases and other data stores. No additional information has to be stored in order to verify the password.

Methods

impl HashedPassword
[src]

from_slice() creates an object from a byte slice

This function will fail and return None if the length of the byte-s;ice isn't equal to the length of the object

Trait Implementations

impl Copy for HashedPassword
[src]

impl Clone for HashedPassword
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for HashedPassword
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for HashedPassword
[src]

impl Serialize for HashedPassword
[src]

Serializes this value into this serializer.

impl Deserialize for HashedPassword
[src]

Deserialize this value given this Deserializer.

impl Index<Range<usize>> for HashedPassword
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[a..b] == y[a..b]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeTo<usize>> for HashedPassword
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[..b] == y[..b]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFrom<usize>> for HashedPassword
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[a..] == y[a..]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFull> for HashedPassword
[src]

Allows a user to access the byte contents of an object as a slice.

WARNING: it might be tempting to do comparisons on objects by using x[] == y[]. This will open up for timing attacks when comparing for example authenticator tags. Because of this only use the comparison functions exposed by the sodiumoxide API.

The returned type after indexing

The method for the indexing (container[index]) operation

impl Debug for HashedPassword
[src]

Formats the value using the given formatter.

impl AsRef<[u8]> for HashedPassword
[src]

Performs the conversion.

impl PartialOrd for HashedPassword
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

impl Ord for HashedPassword
[src]

This method returns an Ordering between self and other. Read more

impl Hash for HashedPassword
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.