Trait hickory_proto::rr::dnssec::public_key::PublicKey
source · pub trait PublicKey {
// Required methods
fn public_bytes(&self) -> &[u8] ⓘ;
fn verify(
&self,
algorithm: Algorithm,
message: &[u8],
signature: &[u8]
) -> ProtoResult<()>;
}
Available on crate feature
dnssec
only.Expand description
PublicKeys implement the ability to ideally be zero copy abstractions over public keys for verifying signed content.
In DNS the KEY and DNSKEY types are generally the RData types which store public key material.
Required Methods§
sourcefn public_bytes(&self) -> &[u8] ⓘ
fn public_bytes(&self) -> &[u8] ⓘ
Returns the public bytes of the public key, in DNS format
sourcefn verify(
&self,
algorithm: Algorithm,
message: &[u8],
signature: &[u8]
) -> ProtoResult<()>
fn verify( &self, algorithm: Algorithm, message: &[u8], signature: &[u8] ) -> ProtoResult<()>
Verifies the hash matches the signature with the current key
.
§Arguments
message
- the message to be validated, seehash_rrset
signature
- the signature to use to verify the hash, extracted from anRData::RRSIG
for example.
§Return value
True if and only if the signature is valid for the hash. This will always return
false if the key
.