pub trait Point: Element {
    // Required method
    fn map(&mut self, message: &[u8]);
}
Expand description

An element of a group that supports message hashing.

Required Methods§

source

fn map(&mut self, message: &[u8])

Maps the provided data to a group element.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Point for G1

source§

impl Point for G2