pub trait EncodeDecodeBase64 {
fn encode_base64(&self) -> String;
fn decode_base64(value: &str) -> Result<Self, Report>;
}
Expand description
Cryptographic material with an immediate conversion to/from Base64 strings.
This is an extension trait of ToFromBytes
above.