Struct sodiumoxide::crypto::auth::hmacsha512256::Key [] [src]

#[must_use]
pub struct Key(pub [u8; 32]);

Authentication Key

When a Key goes out of scope its contents will be zeroed out

Methods

impl Key
[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 Clone for Key
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Key
[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 Key
[src]

impl Serialize for Key
[src]

Serializes this value into this serializer.

impl Deserialize for Key
[src]

Deserialize this value given this Deserializer.

impl Index<Range<usize>> for Key
[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 Key
[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 Key
[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 Key
[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 Key
[src]

Formats the value using the given formatter.

impl Drop for Key
[src]

A method called when the value goes out of scope. Read more