Struct secure_serialisation::SecretKey [] [src]

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

SecretKey for asymmetric authenticated encryption

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

Methods

impl SecretKey
[src]

[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<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 rust_sodium API.

[src]

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 rust_sodium API.

[src]

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 rust_sodium API.

[src]

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 rust_sodium API.

[src]

impl Clone for SecretKey
[src]

[src]

impl Eq for SecretKey
[src]

impl Drop for SecretKey
[src]

[src]

impl PartialEq<SecretKey> for SecretKey
[src]

[src]

impl Serialize for SecretKey
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for SecretKey
[src]

[src]

Formats the value using the given formatter.

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

[src]