[][src]Struct indy_crypto::bls::Generator

pub struct Generator { /* fields omitted */ }

BLS generator point. BLS algorithm requires choosing of generator point that must be known to all parties. The most of BLS methods require generator to be provided.

Methods

impl Generator
[src]

pub fn new() -> IndyCryptoResult<Generator>
[src]

Creates and returns random generator point that satisfy BLS algorithm requirements.

Example

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

pub fn as_bytes(&self) -> &[u8]
[src]

Returns BLS generator point bytes representation.

Example

use indy_crypto::bls::*;
let gen = Generator::new().unwrap();
let gen_bytes = gen.as_bytes();
assert!(gen_bytes.len() > 0);

pub fn from_bytes(bytes: &[u8]) -> IndyCryptoResult<Generator>
[src]

Creates and returns generator point from bytes representation.

Example

use indy_crypto::bls::Generator;
let gen = Generator::new().unwrap();
let gen_bytes = gen.as_bytes();
Generator::from_bytes(gen_bytes).unwrap();

Trait Implementations

impl Debug for Generator
[src]

Auto Trait Implementations

impl Send for Generator

impl Sync for Generator

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self