Source code
Revision control
Copy as Markdown
Other Tools
#![allow(non_upper_case_globals)]
use super::CtapResponse;
// Note: Needed for PinUvAuthTokenPermission
// The current version of `bitflags` doesn't seem to allow
// to set this for an individual bitflag-struct.
use super::{get_info::AuthenticatorInfo, Command, CommandError, RequestCtap2, StatusCode};
use crate::crypto::{COSEKey, CryptoError, PinUvAuthProtocol, SharedSecret};
use crate::transport::errors::HIDError;
use crate::transport::{FidoDevice, VirtualFidoDevice};
use serde::{
de::{Error as SerdeError, IgnoredAny, MapAccess, Visitor},
Deserialize, Deserializer, Serialize, Serializer,
};
use serde_bytes::{ByteBuf, Bytes};
use serde_cbor::de::from_slice;
use serde_cbor::ser::to_vec;
use serde_cbor::Value;
use sha2::{Digest, Sha256};
use std::convert::TryFrom;
use std::error::Error as StdErrorT;
use std::fmt;
#[derive(Debug, Copy, Clone)]
#[repr(u8)]
pub enum PINSubcommand {
GetPinRetries = 0x01,
GetKeyAgreement = 0x02,
SetPIN = 0x03,
ChangePIN = 0x04,
GetPINToken = 0x05, // superseded by GetPinUvAuth*
GetPinUvAuthTokenUsingUvWithPermissions = 0x06,
GetUvRetries = 0x07,
GetPinUvAuthTokenUsingPinWithPermissions = 0x09, // Yes, 0x08 is missing
}
bitflags! {
pub struct PinUvAuthTokenPermission: u8 {
const MakeCredential = 0x01; // rp_id required
const GetAssertion = 0x02; // rp_id required
const CredentialManagement = 0x04; // rp_id optional
const BioEnrollment = 0x08; // rp_id ignored
const LargeBlobWrite = 0x10; // rp_id ignored
const AuthenticatorConfiguration = 0x20; // rp_id ignored
}
}
impl Default for PinUvAuthTokenPermission {
fn default() -> Self {
// CTAP 2.1 spec:
// If authenticatorClientPIN's getPinToken subcommand is invoked, default permissions
// of `mc` and `ga` (value 0x03) are granted for the returned pinUvAuthToken.
PinUvAuthTokenPermission::MakeCredential | PinUvAuthTokenPermission::GetAssertion
}
}
#[derive(Debug)]
pub struct ClientPIN {
pub pin_protocol: Option<PinUvAuthProtocol>,
pub subcommand: PINSubcommand,
pub key_agreement: Option<COSEKey>,
pub pin_auth: Option<Vec<u8>>,
pub new_pin_enc: Option<Vec<u8>>,
pub pin_hash_enc: Option<Vec<u8>>,
pub permissions: Option<u8>,
pub rp_id: Option<String>,
}
impl Default for ClientPIN {
fn default() -> Self {
ClientPIN {
pin_protocol: None,
subcommand: PINSubcommand::GetPinRetries,
key_agreement: None,
pin_auth: None,
new_pin_enc: None,
pin_hash_enc: None,
permissions: None,
rp_id: None,
}
}
}
impl Serialize for ClientPIN {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let command: u8 = self.subcommand as u8;
serialize_map_optional!(
serializer,
&1 => self.pin_protocol.as_ref().map(|p| p.id()),
&2 => Some(&command),
&3 => &self.key_agreement,
&4 => self.pin_auth.as_ref().map(|pin_auth| Bytes::new(pin_auth.as_ref())),
&5 => self.new_pin_enc.as_ref().map(|new_pin_enc| Bytes::new(new_pin_enc.as_ref())),
&6 => self.pin_hash_enc.as_ref().map(|pin_hash_enc| Bytes::new(pin_hash_enc.as_ref())),
&9 => self.permissions,
&0x0A => &self.rp_id,
)
}
}
pub trait ClientPINSubCommand {
type Output;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError>;
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError>;
}
#[derive(Default, Debug, PartialEq, Eq)]
pub struct ClientPinResponse {
pub key_agreement: Option<COSEKey>,
pub pin_token: Option<Vec<u8>>,
/// Number of PIN attempts remaining before lockout.
pub pin_retries: Option<u8>,
pub power_cycle_state: Option<bool>,
pub uv_retries: Option<u8>,
}
impl CtapResponse for ClientPinResponse {}
impl<'de> Deserialize<'de> for ClientPinResponse {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct ClientPinResponseVisitor;
impl<'de> Visitor<'de> for ClientPinResponseVisitor {
type Value = ClientPinResponse;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
formatter.write_str("a map")
}
fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
where
M: MapAccess<'de>,
{
let mut key_agreement = None;
let mut pin_token = None;
let mut pin_retries = None;
let mut power_cycle_state = None;
let mut uv_retries = None;
while let Some(key) = map.next_key()? {
match key {
0x01 => {
if key_agreement.is_some() {
return Err(SerdeError::duplicate_field("key_agreement"));
}
key_agreement = map.next_value()?;
}
0x02 => {
if pin_token.is_some() {
return Err(SerdeError::duplicate_field("pin_token"));
}
let value: ByteBuf = map.next_value()?;
pin_token = Some(value.into_vec());
}
0x03 => {
if pin_retries.is_some() {
return Err(SerdeError::duplicate_field("pin_retries"));
}
pin_retries = Some(map.next_value()?);
}
0x04 => {
if power_cycle_state.is_some() {
return Err(SerdeError::duplicate_field("power_cycle_state"));
}
power_cycle_state = Some(map.next_value()?);
}
0x05 => {
if uv_retries.is_some() {
return Err(SerdeError::duplicate_field("uv_retries"));
}
uv_retries = Some(map.next_value()?);
}
k => {
warn!("ClientPinResponse: unexpected key: {:?}", k);
let _ = map.next_value::<IgnoredAny>()?;
continue;
}
}
}
Ok(ClientPinResponse {
key_agreement,
pin_token,
pin_retries,
power_cycle_state,
uv_retries,
})
}
}
deserializer.deserialize_bytes(ClientPinResponseVisitor)
}
}
#[derive(Debug)]
pub struct GetKeyAgreement {
pin_protocol: PinUvAuthProtocol,
}
impl GetKeyAgreement {
pub fn new(pin_protocol: PinUvAuthProtocol) -> Self {
GetKeyAgreement { pin_protocol }
}
}
impl ClientPINSubCommand for GetKeyAgreement {
type Output = ClientPinResponse;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError> {
Ok(ClientPIN {
pin_protocol: Some(self.pin_protocol.clone()),
subcommand: PINSubcommand::GetKeyAgreement,
..ClientPIN::default()
})
}
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError> {
let get_pin_response: ClientPinResponse =
from_slice(input).map_err(CommandError::Deserializing)?;
if get_pin_response.key_agreement.is_none() {
return Err(CommandError::MissingRequiredField("key_agreement"));
}
Ok(get_pin_response)
}
}
#[derive(Debug)]
/// Superseded by GetPinUvAuthTokenUsingUvWithPermissions or
/// GetPinUvAuthTokenUsingPinWithPermissions, thus for backwards compatibility only
pub struct GetPinToken<'sc, 'pin> {
shared_secret: &'sc SharedSecret,
pin: &'pin Pin,
}
impl<'sc, 'pin> GetPinToken<'sc, 'pin> {
pub fn new(shared_secret: &'sc SharedSecret, pin: &'pin Pin) -> Self {
GetPinToken { shared_secret, pin }
}
}
impl<'sc, 'pin> ClientPINSubCommand for GetPinToken<'sc, 'pin> {
type Output = ClientPinResponse;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError> {
let input = self.pin.for_pin_token();
trace!("pin_hash = {:#04X?}", &input);
let pin_hash_enc = self.shared_secret.encrypt(&input)?;
trace!("pin_hash_enc = {:#04X?}", &pin_hash_enc);
Ok(ClientPIN {
pin_protocol: Some(self.shared_secret.pin_protocol.clone()),
subcommand: PINSubcommand::GetPINToken,
key_agreement: Some(self.shared_secret.client_input().clone()),
pin_hash_enc: Some(pin_hash_enc),
..ClientPIN::default()
})
}
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError> {
let get_pin_response: ClientPinResponse =
from_slice(input).map_err(CommandError::Deserializing)?;
if get_pin_response.pin_token.is_none() {
return Err(CommandError::MissingRequiredField("pin_token"));
}
Ok(get_pin_response)
}
}
#[derive(Debug)]
pub struct GetPinUvAuthTokenUsingPinWithPermissions<'sc, 'pin> {
shared_secret: &'sc SharedSecret,
pin: &'pin Pin,
permissions: PinUvAuthTokenPermission,
rp_id: Option<String>,
}
impl<'sc, 'pin> GetPinUvAuthTokenUsingPinWithPermissions<'sc, 'pin> {
pub fn new(
shared_secret: &'sc SharedSecret,
pin: &'pin Pin,
permissions: PinUvAuthTokenPermission,
rp_id: Option<String>,
) -> Self {
GetPinUvAuthTokenUsingPinWithPermissions {
shared_secret,
pin,
permissions,
rp_id,
}
}
}
impl<'sc, 'pin> ClientPINSubCommand for GetPinUvAuthTokenUsingPinWithPermissions<'sc, 'pin> {
type Output = ClientPinResponse;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError> {
let input = self.pin.for_pin_token();
let pin_hash_enc = self.shared_secret.encrypt(&input)?;
Ok(ClientPIN {
pin_protocol: Some(self.shared_secret.pin_protocol.clone()),
subcommand: PINSubcommand::GetPinUvAuthTokenUsingPinWithPermissions,
key_agreement: Some(self.shared_secret.client_input().clone()),
pin_hash_enc: Some(pin_hash_enc),
permissions: Some(self.permissions.bits()),
rp_id: self.rp_id.clone(), /* TODO: This could probably be done less wasteful with
* &str all the way */
..ClientPIN::default()
})
}
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError> {
let get_pin_response: ClientPinResponse =
from_slice(input).map_err(CommandError::Deserializing)?;
if get_pin_response.pin_token.is_none() {
return Err(CommandError::MissingRequiredField("pin_token"));
}
Ok(get_pin_response)
}
}
macro_rules! implementRetries {
($name:ident, $getter:ident) => {
#[derive(Debug, Default)]
pub struct $name {}
impl $name {
pub fn new() -> Self {
Self {}
}
}
impl ClientPINSubCommand for $name {
type Output = ClientPinResponse;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError> {
Ok(ClientPIN {
subcommand: PINSubcommand::$name,
..ClientPIN::default()
})
}
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError> {
let get_pin_response: ClientPinResponse =
from_slice(input).map_err(CommandError::Deserializing)?;
if get_pin_response.$getter.is_none() {
return Err(CommandError::MissingRequiredField(stringify!($getter)));
}
Ok(get_pin_response)
}
}
};
}
implementRetries!(GetPinRetries, pin_retries);
implementRetries!(GetUvRetries, uv_retries);
#[derive(Debug)]
pub struct GetPinUvAuthTokenUsingUvWithPermissions<'sc> {
shared_secret: &'sc SharedSecret,
permissions: PinUvAuthTokenPermission,
rp_id: Option<String>,
}
impl<'sc> GetPinUvAuthTokenUsingUvWithPermissions<'sc> {
pub fn new(
shared_secret: &'sc SharedSecret,
permissions: PinUvAuthTokenPermission,
rp_id: Option<String>,
) -> Self {
GetPinUvAuthTokenUsingUvWithPermissions {
shared_secret,
permissions,
rp_id,
}
}
}
impl<'sc> ClientPINSubCommand for GetPinUvAuthTokenUsingUvWithPermissions<'sc> {
type Output = ClientPinResponse;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError> {
Ok(ClientPIN {
pin_protocol: Some(self.shared_secret.pin_protocol.clone()),
subcommand: PINSubcommand::GetPinUvAuthTokenUsingUvWithPermissions,
key_agreement: Some(self.shared_secret.client_input().clone()),
permissions: Some(self.permissions.bits()),
rp_id: self.rp_id.clone(), /* TODO: This could probably be done less wasteful with
* &str all the way */
..ClientPIN::default()
})
}
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError> {
let get_pin_response: ClientPinResponse =
from_slice(input).map_err(CommandError::Deserializing)?;
if get_pin_response.pin_token.is_none() {
return Err(CommandError::MissingRequiredField("pin_token"));
}
Ok(get_pin_response)
}
}
#[derive(Debug)]
pub struct SetNewPin<'sc, 'pin> {
shared_secret: &'sc SharedSecret,
new_pin: &'pin Pin,
}
impl<'sc, 'pin> SetNewPin<'sc, 'pin> {
pub fn new(shared_secret: &'sc SharedSecret, new_pin: &'pin Pin) -> Self {
SetNewPin {
shared_secret,
new_pin,
}
}
}
impl<'sc, 'pin> ClientPINSubCommand for SetNewPin<'sc, 'pin> {
type Output = ClientPinResponse;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError> {
if self.new_pin.as_bytes().len() > 63 {
return Err(CommandError::StatusCode(
StatusCode::PinPolicyViolation,
None,
));
}
// newPinEnc: the result of calling encrypt(shared secret, paddedPin) where paddedPin is
// newPin padded on the right with 0x00 bytes to make it 64 bytes long. (Since the maximum
// length of newPin is 63 bytes, there is always at least one byte of padding.)
let new_pin_padded = self.new_pin.padded();
let new_pin_enc = self.shared_secret.encrypt(&new_pin_padded)?;
// pinUvAuthParam: the result of calling authenticate(shared secret, newPinEnc).
let pin_auth = self.shared_secret.authenticate(&new_pin_enc)?;
Ok(ClientPIN {
pin_protocol: Some(self.shared_secret.pin_protocol.clone()),
subcommand: PINSubcommand::SetPIN,
key_agreement: Some(self.shared_secret.client_input().clone()),
new_pin_enc: Some(new_pin_enc),
pin_auth: Some(pin_auth),
..ClientPIN::default()
})
}
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError> {
// Should be an empty response or a valid cbor-value (which we ignore)
if !input.is_empty() {
let _: Value = from_slice(input).map_err(CommandError::Deserializing)?;
}
Ok(ClientPinResponse::default())
}
}
#[derive(Debug)]
pub struct ChangeExistingPin<'sc, 'pin> {
pin_protocol: PinUvAuthProtocol,
shared_secret: &'sc SharedSecret,
current_pin: &'pin Pin,
new_pin: &'pin Pin,
}
impl<'sc, 'pin> ChangeExistingPin<'sc, 'pin> {
pub fn new(
info: &AuthenticatorInfo,
shared_secret: &'sc SharedSecret,
current_pin: &'pin Pin,
new_pin: &'pin Pin,
) -> Result<Self, CommandError> {
Ok(ChangeExistingPin {
pin_protocol: PinUvAuthProtocol::try_from(info)?,
shared_secret,
current_pin,
new_pin,
})
}
}
impl<'sc, 'pin> ClientPINSubCommand for ChangeExistingPin<'sc, 'pin> {
type Output = ClientPinResponse;
fn as_client_pin(&self) -> Result<ClientPIN, CommandError> {
if self.new_pin.as_bytes().len() > 63 {
return Err(CommandError::StatusCode(
StatusCode::PinPolicyViolation,
None,
));
}
// newPinEnc: the result of calling encrypt(shared secret, paddedPin) where paddedPin is
// newPin padded on the right with 0x00 bytes to make it 64 bytes long. (Since the maximum
// length of newPin is 63 bytes, there is always at least one byte of padding.)
let new_pin_padded = self.new_pin.padded();
let new_pin_enc = self.shared_secret.encrypt(&new_pin_padded)?;
let current_pin_hash = self.current_pin.for_pin_token();
let pin_hash_enc = self.shared_secret.encrypt(current_pin_hash.as_ref())?;
let pin_auth = self
.shared_secret
.authenticate(&[new_pin_enc.as_slice(), pin_hash_enc.as_slice()].concat())?;
Ok(ClientPIN {
pin_protocol: Some(self.shared_secret.pin_protocol.clone()),
subcommand: PINSubcommand::ChangePIN,
key_agreement: Some(self.shared_secret.client_input().clone()),
new_pin_enc: Some(new_pin_enc),
pin_hash_enc: Some(pin_hash_enc),
pin_auth: Some(pin_auth),
permissions: None,
rp_id: None,
})
}
fn parse_response_payload(&self, input: &[u8]) -> Result<Self::Output, CommandError> {
// Should be an empty response or a valid cbor-value (which we ignore)
if !input.is_empty() {
let _: Value = from_slice(input).map_err(CommandError::Deserializing)?;
}
Ok(ClientPinResponse::default())
}
}
impl<T> RequestCtap2 for T
where
T: ClientPINSubCommand<Output = ClientPinResponse>,
T: fmt::Debug,
{
type Output = <T as ClientPINSubCommand>::Output;
fn command(&self) -> Command {
Command::ClientPin
}
fn wire_format(&self) -> Result<Vec<u8>, HIDError> {
let client_pin = self.as_client_pin()?;
let output = to_vec(&client_pin).map_err(CommandError::Serializing)?;
trace!("client subcommmand: {:04X?}", &output);
Ok(output)
}
fn handle_response_ctap2<Dev: FidoDevice>(
&self,
_dev: &mut Dev,
input: &[u8],
) -> Result<Self::Output, HIDError> {
trace!("Client pin subcomand response:{:04X?}", &input);
if input.is_empty() {
return Err(CommandError::InputTooSmall.into());
}
let status: StatusCode = input[0].into();
debug!("response status code: {:?}", status);
if status.is_ok() {
<T as ClientPINSubCommand>::parse_response_payload(self, &input[1..])
.map_err(HIDError::Command)
} else {
let add_data = if input.len() > 1 {
let data: Value = from_slice(&input[1..]).map_err(CommandError::Deserializing)?;
Some(data)
} else {
None
};
Err(CommandError::StatusCode(status, add_data).into())
}
}
fn send_to_virtual_device<Dev: VirtualFidoDevice>(
&self,
dev: &mut Dev,
) -> Result<ClientPinResponse, HIDError> {
dev.client_pin(&self.as_client_pin()?)
}
}
#[derive(Clone, Serialize, Deserialize)]
pub struct Pin(String);
impl fmt::Debug for Pin {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Pin(redacted)")
}
}
impl Pin {
pub fn new(value: &str) -> Pin {
Pin(String::from(value))
}
pub fn for_pin_token(&self) -> Vec<u8> {
Sha256::digest(self.as_bytes())[..16].into()
}
pub fn padded(&self) -> Vec<u8> {
let mut out = self.0.as_bytes().to_vec();
out.resize(64, 0x00);
out
}
pub fn as_bytes(&self) -> &[u8] {
self.0.as_bytes()
}
}
#[derive(Clone, Debug, Serialize)]
pub enum PinError {
PinRequired,
PinIsTooShort,
PinIsTooLong(usize),
InvalidPin(Option<u8>),
InvalidUv(Option<u8>),
PinAuthBlocked,
PinBlocked,
PinNotSet,
UvBlocked,
/// Used for CTAP2.0 UV (fingerprints)
PinAuthInvalid,
Crypto(CryptoError),
}
impl fmt::Display for PinError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
PinError::PinRequired => write!(f, "Pin required."),
PinError::PinIsTooShort => write!(f, "pin is too short"),
PinError::PinIsTooLong(len) => write!(f, "pin is too long ({len})"),
PinError::InvalidPin(ref e) => {
let mut res = write!(f, "Invalid Pin.");
if let Some(pin_retries) = e {
res = write!(f, " Retries left: {pin_retries:?}")
}
res
}
PinError::InvalidUv(ref e) => {
let mut res = write!(f, "Invalid Uv.");
if let Some(uv_retries) = e {
res = write!(f, " Retries left: {uv_retries:?}")
}
res
}
PinError::PinAuthBlocked => {
write!(f, "Pin authentication blocked. Device needs power cycle.")
}
PinError::PinBlocked => write!(f, "No retries left. Pin blocked. Device needs reset."),
PinError::PinNotSet => write!(f, "Pin needed but not set on device."),
PinError::UvBlocked => write!(f, "No retries left. Uv blocked. Device needs reset."),
PinError::PinAuthInvalid => write!(f, "PinAuth invalid."),
PinError::Crypto(ref e) => write!(f, "Crypto backend error: {e:?}"),
}
}
}
impl StdErrorT for PinError {}
impl From<CryptoError> for PinError {
fn from(e: CryptoError) -> Self {
PinError::Crypto(e)
}
}
#[cfg(test)]
mod test {
use std::convert::TryFrom;
use super::ClientPinResponse;
use crate::{
crypto::{COSEAlgorithm, COSEEC2Key, COSEKey, COSEKeyType, Curve, PinUvAuthProtocol},
ctap2::commands::client_pin::{ClientPIN, PINSubcommand, PinUvAuthTokenPermission},
AuthenticatorInfo,
};
use serde_cbor::de::from_slice;
#[test]
fn test_get_key_agreement() {
let reference = [
161, 1, 165, 1, 2, 3, 56, 24, 32, 1, 33, 88, 32, 115, 222, 167, 5, 88, 238, 119, 202,
121, 23, 241, 150, 9, 48, 197, 136, 174, 0, 17, 90, 190, 83, 65, 103, 237, 97, 41, 213,
128, 111, 7, 106, 34, 88, 32, 248, 204, 9, 26, 82, 96, 25, 72, 5, 82, 251, 185, 22, 39,
246, 149, 54, 246, 255, 225, 52, 102, 67, 221, 113, 194, 236, 213, 199, 147, 180, 81,
];
let expected = ClientPinResponse {
key_agreement: Some(COSEKey {
alg: COSEAlgorithm::ECDH_ES_HKDF256,
key: COSEKeyType::EC2(COSEEC2Key {
curve: Curve::SECP256R1,
x: vec![
115, 222, 167, 5, 88, 238, 119, 202, 121, 23, 241, 150, 9, 48, 197, 136,
174, 0, 17, 90, 190, 83, 65, 103, 237, 97, 41, 213, 128, 111, 7, 106,
],
y: vec![
248, 204, 9, 26, 82, 96, 25, 72, 5, 82, 251, 185, 22, 39, 246, 149, 54,
246, 255, 225, 52, 102, 67, 221, 113, 194, 236, 213, 199, 147, 180, 81,
],
}),
}),
pin_token: None,
pin_retries: None,
power_cycle_state: None,
uv_retries: None,
};
let result: ClientPinResponse =
from_slice(&reference).expect("could not deserialize reference");
assert_eq!(expected, result);
}
#[test]
fn test_get_pin_retries() {
let reference = [161, 3, 7];
let expected = ClientPinResponse {
key_agreement: None,
pin_token: None,
pin_retries: Some(7),
power_cycle_state: None,
uv_retries: None,
};
let result: ClientPinResponse =
from_slice(&reference).expect("could not deserialize reference");
assert_eq!(expected, result);
}
#[test]
fn test_get_uv_retries() {
let reference = [161, 5, 2];
let expected = ClientPinResponse {
key_agreement: None,
pin_token: None,
pin_retries: None,
power_cycle_state: None,
uv_retries: Some(2),
};
let result: ClientPinResponse =
from_slice(&reference).expect("could not deserialize reference");
assert_eq!(expected, result);
}
#[test]
fn test_get_pin_token() {
let reference = [
161, 2, 88, 48, 173, 244, 214, 87, 128, 57, 25, 99, 142, 140, 41, 25, 94, 60, 75, 163,
240, 187, 211, 138, 11, 208, 74, 117, 180, 181, 97, 31, 79, 252, 191, 244, 49, 13, 201,
217, 204, 219, 122, 3, 101, 4, 70, 26, 14, 41, 150, 148,
];
let expected = ClientPinResponse {
key_agreement: None,
pin_token: Some(vec![
173, 244, 214, 87, 128, 57, 25, 99, 142, 140, 41, 25, 94, 60, 75, 163, 240, 187,
211, 138, 11, 208, 74, 117, 180, 181, 97, 31, 79, 252, 191, 244, 49, 13, 201, 217,
204, 219, 122, 3, 101, 4, 70, 26, 14, 41, 150, 148,
]),
pin_retries: None,
power_cycle_state: None,
uv_retries: None,
};
let result: ClientPinResponse =
from_slice(&reference).expect("could not deserialize reference");
assert_eq!(expected, result);
}
#[test]
fn test_get_puat_using_uv() {
let reference = [
161, 2, 88, 48, 94, 109, 192, 236, 90, 161, 77, 153, 23, 146, 179, 189, 133, 106, 76,
150, 17, 238, 155, 102, 107, 201, 98, 232, 184, 33, 153, 224, 203, 87, 147, 10, 21, 20,
85, 184, 109, 61, 240, 58, 236, 198, 171, 48, 242, 165, 221, 214,
];
let expected = ClientPinResponse {
key_agreement: None,
pin_token: Some(vec![
94, 109, 192, 236, 90, 161, 77, 153, 23, 146, 179, 189, 133, 106, 76, 150, 17, 238,
155, 102, 107, 201, 98, 232, 184, 33, 153, 224, 203, 87, 147, 10, 21, 20, 85, 184,
109, 61, 240, 58, 236, 198, 171, 48, 242, 165, 221, 214,
]),
pin_retries: None,
power_cycle_state: None,
uv_retries: None,
};
let result: ClientPinResponse =
from_slice(&reference).expect("could not deserialize reference");
assert_eq!(expected, result);
}
#[test]
fn test_get_puat_using_pin() {
let reference = [
161, 2, 88, 48, 143, 174, 68, 241, 186, 39, 106, 238, 129, 15, 181, 102, 112, 130, 239,
96, 106, 235, 3, 10, 61, 173, 106, 252, 38, 236, 44, 112, 91, 34, 218, 136, 139, 118,
162, 178, 172, 227, 82, 103, 136, 91, 136, 178, 170, 233, 156, 62,
];
let expected = ClientPinResponse {
key_agreement: None,
pin_token: Some(vec![
143, 174, 68, 241, 186, 39, 106, 238, 129, 15, 181, 102, 112, 130, 239, 96, 106,
235, 3, 10, 61, 173, 106, 252, 38, 236, 44, 112, 91, 34, 218, 136, 139, 118, 162,
178, 172, 227, 82, 103, 136, 91, 136, 178, 170, 233, 156, 62,
]),
pin_retries: None,
power_cycle_state: None,
uv_retries: None,
};
let result: ClientPinResponse =
from_slice(&reference).expect("could not deserialize reference");
assert_eq!(expected, result);
}
#[test]
fn test_serialize_client_pin() {
let client_pin = ClientPIN {
pin_protocol: Some(
PinUvAuthProtocol::try_from(&AuthenticatorInfo {
pin_protocols: Some(vec![2]),
..Default::default()
})
.expect("Failed to create PIN protocol"),
),
subcommand: PINSubcommand::GetPinRetries,
key_agreement: Some(COSEKey {
alg: COSEAlgorithm::ECDH_ES_HKDF256,
key: COSEKeyType::EC2(COSEEC2Key {
curve: Curve::SECP256R1,
x: vec![],
y: vec![],
}),
}),
pin_auth: Some(vec![1, 2, 3, 4]),
new_pin_enc: Some(vec![5, 6, 7, 8]),
pin_hash_enc: Some(vec![9, 10, 11, 12]),
permissions: Some(PinUvAuthTokenPermission::CredentialManagement.bits()),
rp_id: Some("example.org".to_string()),
};
let serialized = serde_cbor::ser::to_vec(&client_pin).expect("Failed to serialize to CBOR");
assert_eq!(
serialized,
[
// Value copied from test failure output as regression test snapshot
168, 1, 2, 2, 1, 3, 165, 1, 2, 3, 56, 24, 32, 1, 33, 64, 34, 64, 4, 68, 1, 2, 3, 4,
5, 68, 5, 6, 7, 8, 6, 68, 9, 10, 11, 12, 9, 4, 10, 107, 101, 120, 97, 109, 112,
108, 101, 46, 111, 114, 103
]
);
}
}