Struct secp256k1::Message [−][src]
pub struct Message(_);Expand description
A (hashed) message input to an ECDSA signature
Implementations
Converts the object to a mutable raw pointer for FFI interfacing
If you just want to sign an arbitrary message use Message::from_hashed_data instead.
Converts a MESSAGE_SIZE-byte slice to a message object. WARNING: the slice has to be a
cryptographically secure hash of the actual message that’s going to be signed. Otherwise
the result of signing isn’t a
secure signature.
Trait Implementations
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