huskarl-core 0.4.1

Base library for huskarl (OAuth2 client) ecosystem.
Documentation
use snafu::prelude::*;

use crate::secrets::{
    DecodingError, SecretBytes, SecretDecoder,
    encodings::{InvalidHexSnafu, InvalidUtf8Snafu},
};

/// Decodes hex-encoded text into `SecretBox<[u8]>`.
///
/// Trims whitespace before decoding. Expects the bytes to be valid UTF-8
/// containing hexadecimal characters (0-9, a-f, A-F).
#[derive(Debug, Clone, Copy, Default)]
pub struct HexEncoding;

impl SecretDecoder for HexEncoding {
    type Output = SecretBytes;

    fn decode(&self, bytes: &[u8]) -> Result<Self::Output, DecodingError> {
        let s = std::str::from_utf8(bytes).context(InvalidUtf8Snafu)?;
        let decoded = hex::decode(s.trim()).context(InvalidHexSnafu)?;
        Ok(SecretBytes::new(decoded))
    }
}