pub struct Signed {
pub der_bytes: Vec<u8>,
pub fixed_bytes: Vec<u8>,
}Expand description
Result of signing: DER-encoded signature bytes plus the raw signature object.
Fields§
§der_bytes: Vec<u8>DER-encoded signature (ANS.1 SEQUENCE of two INTEGERs).
fixed_bytes: Vec<u8>Raw fixed-size signature (r || s, 64 bytes).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Signed
impl RefUnwindSafe for Signed
impl Send for Signed
impl Sync for Signed
impl Unpin for Signed
impl UnsafeUnpin for Signed
impl UnwindSafe for Signed
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more