You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
this would make it easier to modify / recompute signature as it would avoid the need to manually use the base64 crate to do the decoding and re-encoding.
the base64 encoding would happen in the fmt::Display implementation where the RRSIG is transformed into text. whereas the base64 decoding would happen in the FromStr implementation, which parses the text representation of an RRSIG
rather than as base64-encoded text.
this would make it easier to modify / recompute signature as it would avoid the need to manually use the
base64
crate to do the decoding and re-encoding.fields that would change
signature
in RRSIG would becomeVec<u8>
dnssec-tests/packages/dns-test/src/record.rs
Line 563 in d25cc92
the base64 encoding would happen in the
fmt::Display
implementation where theRRSIG
is transformed into text. whereas the base64 decoding would happen in theFromStr
implementation, which parses the text representation of an RRSIGexample of code that would be simplified
dnssec-tests/packages/conformance-tests/src/resolver/dnssec/scenarios/bogus.rs
Lines 33 to 37 in d25cc92
The text was updated successfully, but these errors were encountered: