tee_crypto 0.1.0

TEE Crypto Crate.
Documentation
// SPDX-License-Identifier: Apache-2.0
// Copyright 2025 KylinSoft Co., Ltd. <https://www.kylinos.cn/>
// See LICENSES for license details.

//! MD5 hash wrapper backed by RustCrypto.

use digest::Digest as _;

use super::hash::{Digest, DigestBytes, HashAlgorithm};

/// MD5 hash (RFC 1321).
#[derive(Clone)]
pub struct Md5 {
    inner: md5::Md5,
}

impl Digest for Md5 {
    fn new() -> Self {
        Self {
            inner: md5::Md5::new(),
        }
    }

    fn update(&mut self, data: &[u8]) {
        self.inner.update(data);
    }

    fn finalize(self) -> DigestBytes {
        DigestBytes::new(self.inner.finalize().to_vec(), Self::algorithm())
    }

    fn algorithm() -> HashAlgorithm {
        HashAlgorithm::Md5
    }

    fn output_size() -> usize {
        16
    }

    fn name() -> &'static str {
        "MD5"
    }
}