pub struct DigitallySigned {
pub algorithm: SignatureAndHashAlgorithm,
pub signature: TlsByteVecU16,
}
Available on crate feature
sct
only.Expand description
Digital signature as defined in RFC 5246 section 4.7.
Fields§
§algorithm: SignatureAndHashAlgorithm
SignatureAndHashAlgorithm as defined in RFC 5246 section 7.4.1.4.1.
signature: TlsByteVecU16
Digital signature over some contents using the SignatureAndHashAlgorithm.
Trait Implementations§
source§impl Debug for DigitallySigned
impl Debug for DigitallySigned
source§impl DeserializeBytes for DigitallySigned
impl DeserializeBytes for DigitallySigned
source§impl PartialEq for DigitallySigned
impl PartialEq for DigitallySigned
source§fn eq(&self, other: &DigitallySigned) -> bool
fn eq(&self, other: &DigitallySigned) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SerializeBytes for &DigitallySigned
impl SerializeBytes for &DigitallySigned
source§impl SerializeBytes for DigitallySigned
impl SerializeBytes for DigitallySigned
source§impl Size for &DigitallySigned
impl Size for &DigitallySigned
fn tls_serialized_len(&self) -> usize
source§impl Size for DigitallySigned
impl Size for DigitallySigned
fn tls_serialized_len(&self) -> usize
impl StructuralPartialEq for DigitallySigned
Auto Trait Implementations§
impl RefUnwindSafe for DigitallySigned
impl Send for DigitallySigned
impl Sync for DigitallySigned
impl Unpin for DigitallySigned
impl UnwindSafe for DigitallySigned
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