Struct tr1pd::crypto::PublicKey [] [src]

#[must_use]
pub struct PublicKey(pub [u8; PUBLICKEYBYTES]);

PublicKey for signatures

Methods

impl PublicKey
[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 Ord for PublicKey
[src]

[src]

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

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

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

[src]

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

[src]

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

[src]

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

[src]

impl Copy for PublicKey
[src]

impl Hash for PublicKey
[src]

[src]

impl Clone for PublicKey
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for PublicKey
[src]

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

[src]

Performs the conversion.

impl PartialEq<PublicKey> for PublicKey
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Debug for PublicKey
[src]

[src]

Formats the value using the given formatter.

impl Serialize for PublicKey
[src]

[src]

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

[src]

impl PartialOrd<PublicKey> for PublicKey
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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