Struct yubihsm::command::sign_ecdsa::ECDSASignature[][src]

pub struct ECDSASignature(pub Vec<u8>);

ECDSA signatures (ASN.1 DER encoded)

Methods

impl ECDSASignature
[src]

Important traits for Vec<u8>

Unwrap inner byte vector

Get length of the signature

Important traits for &'a [u8]

Get slice of the inner byte vector

Trait Implementations

impl Debug for ECDSASignature
[src]

Formats the value using the given formatter. Read more

impl AsRef<[u8]> for ECDSASignature
[src]

Important traits for &'a [u8]

Performs the conversion.

impl Into<Vec<u8>> for ECDSASignature
[src]

Important traits for Vec<u8>

Performs the conversion.

Auto Trait Implementations