pub struct Signature(_);
Expand description
An ECDSA signature
Implementations
sourceimpl Signature
impl Signature
sourcepub fn from_der(secp: &Secp256k1, data: &[u8]) -> Result<Signature, Error>
pub fn from_der(secp: &Secp256k1, data: &[u8]) -> Result<Signature, Error>
Converts a DER-encoded byte slice to a signature
sourcepub fn from_der_lax(secp: &Secp256k1, data: &[u8]) -> Result<Signature, Error>
pub fn from_der_lax(secp: &Secp256k1, data: &[u8]) -> Result<Signature, Error>
Converts a “lax DER”-encoded byte slice to a signature. This is basically only useful for validating signatures in the Bitcoin blockchain from before 2016. It should never be used in new applications. This library does not support serializing to this “format”
sourcepub fn normalize_s(&mut self, secp: &Secp256k1)
pub fn normalize_s(&mut self, secp: &Secp256k1)
Normalizes a signature to a “low S” form. In ECDSA, signatures are of the form (r, s) where r and s are numbers lying in some finite field. The verification equation will pass for (r, s) iff it passes for (r, -s), so it is possible to ``modify’’ signatures in transit by flipping the sign of s. This does not constitute a forgery since the signed message still cannot be changed, but for some applications, changing even the signature itself can be a problem. Such applications require a “strong signature”. It is believed that ECDSA is a strong signature except for this ambiguity in the sign of s, so to accomodate these applications libsecp256k1 will only accept signatures for which s is in the lower half of the field range. This eliminates the ambiguity.
However, for some systems, signatures with high s-values are considered valid. (For example, parsing the historic Bitcoin blockchain requires this.) For these applications we provide this normalization function, which ensures that the s value lies in the lower half of its range.
sourcepub fn as_ptr(&self) -> *const Signature
pub fn as_ptr(&self) -> *const Signature
Obtains a raw pointer suitable for use with FFI functions
sourcepub fn as_mut_ptr(&mut self) -> *mut Signature
pub fn as_mut_ptr(&mut self) -> *mut Signature
Obtains a raw mutable pointer suitable for use with FFI functions
sourcepub fn serialize_der(&self, secp: &Secp256k1) -> Vec<u8>
pub fn serialize_der(&self, secp: &Secp256k1) -> Vec<u8>
Serializes the signature in DER format
Trait Implementations
impl Copy for Signature
impl Eq for Signature
impl StructuralEq for Signature
impl StructuralPartialEq for Signature
Auto Trait Implementations
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more