Struct private_box::SecretKey[][src]

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

SecretKey for asymmetric authenticated encryption

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

Methods

impl SecretKey
[src]

public_key() computes the corresponding public key for a given secret key

impl SecretKey
[src]

from_slice() creates an object from a byte slice

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

Trait Implementations

impl Index<RangeTo<usize>> for SecretKey
[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.

Important traits for &'a [u8]

Performs the indexing (container[index]) operation.

impl Index<RangeFrom<usize>> for SecretKey
[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.

Important traits for &'a [u8]

Performs the indexing (container[index]) operation.

impl Index<Range<usize>> for SecretKey
[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.

Important traits for &'a [u8]

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for SecretKey
[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.

Important traits for &'a [u8]

Performs the indexing (container[index]) operation.

impl<'de> Deserialize<'de> for SecretKey
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for SecretKey
[src]

Serialize this value into the given Serde serializer. Read more

impl Clone for SecretKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SecretKey
[src]

Formats the value using the given formatter. Read more

impl Drop for SecretKey
[src]

Executes the destructor for this type. Read more

impl Eq for SecretKey
[src]

impl PartialEq<SecretKey> for SecretKey
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for SecretKey

impl Sync for SecretKey