Struct libsecp256k1::PublicKey [−][src]
pub struct PublicKey(_);
Expand description
Public key on a secp256k1 curve.
Implementations
pub fn from_secret_key_with_context(
seckey: &SecretKey,
context: &ECMultGenContext
) -> PublicKey
[src]pub fn tweak_add_assign_with_context(
&mut self,
tweak: &SecretKey,
context: &ECMultContext
) -> Result<(), Error>
[src]pub fn tweak_mul_assign_with_context(
&mut self,
tweak: &SecretKey,
context: &ECMultContext
) -> Result<(), Error>
[src]Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PublicKey
impl UnwindSafe for PublicKey
Blanket Implementations
Mutably borrows from an owned value. Read more