Struct exonum::crypto::PublicKey [] [src]

pub struct PublicKey(_);

Public key used for verifying signatures.

Examples

use exonum::crypto;

let (public_key, _) = crypto::gen_keypair();

Methods

impl PublicKey
[src]

Creates a new instance filled with zeros.

impl PublicKey
[src]

Creates a new instance from bytes array.

Creates a new instance from bytes slice.

Trait Implementations

impl<'a> ExonumJson for &'a PublicKey
[src]

write deserialized field in buffer on place.

serialize field as json::Value

impl ExonumJsonDeserialize for PublicKey
[src]

deserialize json value.

impl<'a> Field<'a> for &'a PublicKey
[src]

Field's header size

Read Field from buffer, with given position, beware of memory unsafety, you should check Field before read. Read more

Write Field to buffer, in given position write doesn't lead to memory unsafety. Read more

Checks if data in the buffer could be deserialized. Returns an index of latest data seen. Read more

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

impl Clone for PublicKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for PublicKey
[src]

impl PartialOrd for PublicKey
[src]

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

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

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

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

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

impl Ord for PublicKey
[src]

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

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the maximum of two values. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the minimum of two values. Read more

impl Hash for PublicKey
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

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

Performs the conversion.

impl Debug for PublicKey
[src]

Formats the value using the given formatter.

impl HexValue for PublicKey
[src]

Format value as hex representation.

Convert value from hex representation.

impl Serialize for PublicKey
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

impl Index<Range<usize>> for PublicKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeTo<usize>> for PublicKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFrom<usize>> for PublicKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFull> for PublicKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl StorageKey for PublicKey
[src]

Returns the size of the serialized key in bytes.

Serialize a key into the specified buffer of bytes. Read more

Deserialize a key from the specified buffer of bytes.

impl StorageValue for PublicKey
[src]

Serialize a value into a vector of bytes.

Deserialize a value from bytes.

Returns a hash of the value. Read more

impl ProofMapKey for PublicKey
[src]