Struct sodiumoxide::crypto::sign::ed25519::Seed
[−]
[src]
#[must_use]pub struct Seed(pub [u8; 32]);
Seed
that can be used for keypair generation
The Seed
is used by keypair_from_seed()
to generate
a secret and public signature key.
When a Seed
goes out of scope its contents
will be zeroed out
Methods
impl Seed
[src]
fn from_slice(bs: &[u8]) -> Option<Seed>
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 Seed
[src]
fn clone(&self) -> Seed
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for Seed
[src]
fn eq(&self, Seed: &Seed) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.
impl Eq for Seed
[src]
impl Serialize for Seed
[src]
fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error> where S: Serializer
Serializes this value into this serializer.
impl Deserialize for Seed
[src]
fn deserialize<D>(deserializer: &mut D) -> Result<Seed, D::Error> where D: Deserializer
Deserialize this value given this Deserializer
.
impl Index<Range<usize>> for Seed
[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.
type Output = [u8]
The returned type after indexing
fn index(&self, _index: Range<usize>) -> &[u8]
The method for the indexing (container[index]
) operation
impl Index<RangeTo<usize>> for Seed
[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.
type Output = [u8]
The returned type after indexing
fn index(&self, _index: RangeTo<usize>) -> &[u8]
The method for the indexing (container[index]
) operation
impl Index<RangeFrom<usize>> for Seed
[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.
type Output = [u8]
The returned type after indexing
fn index(&self, _index: RangeFrom<usize>) -> &[u8]
The method for the indexing (container[index]
) operation
impl Index<RangeFull> for Seed
[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.
type Output = [u8]
The returned type after indexing
fn index(&self, _index: RangeFull) -> &[u8]
The method for the indexing (container[index]
) operation