Struct flow_sdk::algorithms::secp256k1::PublicKey [−][src]
#[repr(transparent)]pub struct PublicKey(_);
Expand description
A Secp256k1 public key, used for verification of signatures
Implementations
Obtains a raw const pointer suitable for use with FFI functions
Obtains a raw mutable pointer suitable for use with FFI functions
Creates a new public key from a secret key.
Creates a public key directly from a slice
Serialize the key as a byte-encoded pair of values. In compressed form the y-coordinate is represented by only a single bit, as x determines it up to one bit.
Serialize the key as a byte-encoded pair of values, in uncompressed form
Negates the pk to the pk self
in place
Will return an error if the pk would be invalid.
pub fn add_exp_assign<C>(
&mut self,
secp: &Secp256k1<C>,
other: &[u8]
) -> Result<(), Error> where
C: Verification,
pub fn add_exp_assign<C>(
&mut self,
secp: &Secp256k1<C>,
other: &[u8]
) -> Result<(), Error> where
C: Verification,
Adds the pk corresponding to other
to the pk self
in place
Will return an error if the resulting key would be invalid or
if the tweak was not a 32-byte length slice.
pub fn mul_assign<C>(
&mut self,
secp: &Secp256k1<C>,
other: &[u8]
) -> Result<(), Error> where
C: Verification,
pub fn mul_assign<C>(
&mut self,
secp: &Secp256k1<C>,
other: &[u8]
) -> Result<(), Error> where
C: Verification,
Muliplies the pk self
in place by the scalar other
Will return an error if the resulting key would be invalid or
if the tweak was not a 32-byte length slice.
Adds a second key to this one, returning the sum. Returns an error if the result would be the point at infinity, i.e. we are adding this point to its own negation
Trait Implementations
Creates a new public key from a FFI public key
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
Auto Trait Implementations
impl RefUnwindSafe for PublicKey
impl UnwindSafe for PublicKey
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
Wrap the input message T
in a tonic::Request
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more