use super::{Command, Response};
use {Adapter, CommandType, ObjectId, Session, SessionError};
pub fn hmac<A, D>(
session: &mut Session<A>,
key_id: ObjectId,
data: D,
) -> Result<HMACTag, SessionError>
where
A: Adapter,
D: Into<Vec<u8>>,
{
session.send_command(HMACDataCommand {
key_id,
data: data.into(),
})
}
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct HMACDataCommand {
pub key_id: ObjectId,
pub data: Vec<u8>,
}
impl Command for HMACDataCommand {
type ResponseType = HMACTag;
}
#[derive(Serialize, Deserialize, Debug)]
pub struct HMACTag(pub Vec<u8>);
impl Response for HMACTag {
const COMMAND_TYPE: CommandType = CommandType::HMACData;
}
#[allow(
unknown_lints,
renamed_and_removed_lints,
len_without_is_empty
)]
impl HMACTag {
pub fn new<V: Into<Vec<u8>>>(vec: V) -> HMACTag {
HMACTag(vec.into())
}
pub fn into_vec(self) -> Vec<u8> {
self.into()
}
#[inline]
pub fn len(&self) -> usize {
self.0.len()
}
#[inline]
pub fn as_slice(&self) -> &[u8] {
self.as_ref()
}
}
impl AsRef<[u8]> for HMACTag {
fn as_ref(&self) -> &[u8] {
self.0.as_ref()
}
}
impl From<Vec<u8>> for HMACTag {
fn from(vec: Vec<u8>) -> HMACTag {
HMACTag::new(vec)
}
}
impl<'a> From<&'a [u8]> for HMACTag {
fn from(slice: &'a [u8]) -> HMACTag {
HMACTag::from(slice.to_vec())
}
}
impl Into<Vec<u8>> for HMACTag {
fn into(self) -> Vec<u8> {
self.0
}
}