Struct exonum::crypto::Signature [] [src]

pub struct Signature(_);

Signature.

Examples

use exonum::crypto;

let (public_key, secret_key) = crypto::gen_keypair();
let data = [1, 2, 3];
let signature = crypto::sign(&data, &secret_key);
assert!(crypto::verify(&signature, &data, &public_key));

Methods

impl Signature
[src]

Creates a new instance filled with zeros.

impl Signature
[src]

Creates a new instance from bytes array.

Creates a new instance from bytes slice.

Trait Implementations

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

write deserialized field in buffer on place.

serialize field as json::Value

impl ExonumJsonDeserialize for Signature
[src]

deserialize json value.

impl<'a> Field<'a> for &'a Signature
[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 Signature
[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 Signature
[src]

impl Clone for Signature
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Signature
[src]

impl PartialOrd for Signature
[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 Signature
[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 Signature
[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 Signature
[src]

Performs the conversion.

impl Debug for Signature
[src]

Formats the value using the given formatter.

impl HexValue for Signature
[src]

Format value as hex representation.

Convert value from hex representation.

impl Serialize for Signature
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

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

The returned type after indexing

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

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

The returned type after indexing

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

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

The returned type after indexing

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

impl Index<RangeFull> for Signature
[src]

The returned type after indexing

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