Trait coins_bip32::ecdsa::signature::digest::const_oid::AssociatedOid
source · pub trait AssociatedOid {
const OID: ObjectIdentifier;
}
Expand description
A trait which associates an OID with a type.
Required Associated Constants§
sourceconst OID: ObjectIdentifier
const OID: ObjectIdentifier
The OID associated with this type.
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
source§impl AssociatedOid for Secp256k1
impl AssociatedOid for Secp256k1
const OID: ObjectIdentifier = _
source§impl<C> AssociatedOid for Signature<C>
impl<C> AssociatedOid for Signature<C>
ECDSA ObjectIdentifier
which identifies the digest used by default
with the Signer
and Verifier
traits.
To support non-default digest algorithms, use the SignatureWithOid
type instead.