Struct indy_crypto::bls::SignKey[][src]

pub struct SignKey { /* fields omitted */ }

BLS sign key.

Methods

impl SignKey
[src]

Creates and returns random (or seeded from seed) BLS sign key algorithm requirements.

Example

use indy_crypto::bls::Generator;
Generator::new().unwrap();

Returns BLS sign key bytes representation.

Example

//TODO: Provide an example!

Creates and returns BLS sign key from bytes representation.

Example

//TODO: Provide an example!

Trait Implementations

impl Debug for SignKey
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SignKey

impl Sync for SignKey