Refactored the "helpers" so that they use a common Codec trait; this makes them composable as well.

This commit is contained in:
Werner Kroneman 2024-01-06 19:14:37 +01:00 committed by Link Mauve
commit 18cb6f6e2d
19 changed files with 285 additions and 222 deletions

View file

@ -6,7 +6,7 @@
use crate::hashes::{Algo, Hash};
use crate::util::error::Error;
use crate::util::helpers::ColonSeparatedHex;
use crate::util::text_node_codecs::{Codec, ColonSeparatedHex};
generate_attribute!(
/// Indicates which of the end points should initiate the TCP connection establishment.
@ -43,7 +43,7 @@ generate_element!(
],
text: (
/// Hash value of this fingerprint.
value: ColonSeparatedHex<Vec<u8>>
value: ColonSeparatedHex
)
);