authenticator-ctap2-2021 0.3.2-dev.1

Library for interacting with CTAP1/2 security keys for Web Authentication. Used by Firefox.
Documentation
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

use crate::transport::hid::HIDDevice;
use crate::transport::FidoDevice;
use crate::transport::{AuthenticatorInfo, ECDHSecret, HIDError};
use crate::u2ftypes::{U2FDevice, U2FDeviceInfo};
use std::hash::{Hash, Hasher};
use std::io;
use std::io::{Read, Write};
use std::path::PathBuf;

#[derive(Debug, PartialEq, Eq)]
pub struct Device {}

impl Read for Device {
    fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
        panic!("not implemented");
    }
}

impl Write for Device {
    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
        panic!("not implemented");
    }

    fn flush(&mut self) -> io::Result<()> {
        panic!("not implemented");
    }
}

impl U2FDevice for Device {
    fn get_cid<'a>(&'a self) -> &'a [u8; 4] {
        panic!("not implemented");
    }

    fn set_cid(&mut self, cid: [u8; 4]) {
        panic!("not implemented");
    }

    fn in_rpt_size(&self) -> usize {
        panic!("not implemented");
    }

    fn out_rpt_size(&self) -> usize {
        panic!("not implemented");
    }

    fn get_property(&self, prop_name: &str) -> io::Result<String> {
        panic!("not implemented")
    }

    fn get_device_info(&self) -> U2FDeviceInfo {
        panic!("not implemented")
    }

    fn set_device_info(&mut self, dev_info: U2FDeviceInfo) {
        panic!("not implemented")
    }
}

impl HIDDevice for Device {
    type BuildParameters = PathBuf;
    type Id = PathBuf;

    fn new(parameters: Self::BuildParameters) -> Result<Self, (HIDError, Self::Id)> {
        unimplemented!();
    }

    fn initialized(&self) -> bool {
        unimplemented!();
    }

    fn id(&self) -> Self::Id {
        unimplemented!()
    }

    fn is_u2f(&self) -> bool {
        unimplemented!()
    }

    fn get_authenticator_info(&self) -> Option<&AuthenticatorInfo> {
        unimplemented!()
    }

    fn set_authenticator_info(&mut self, authenticator_info: AuthenticatorInfo) {
        unimplemented!()
    }

    fn set_shared_secret(&mut self, secret: ECDHSecret) {
        unimplemented!()
    }

    fn get_shared_secret(&self) -> Option<&ECDHSecret> {
        unimplemented!()
    }

    fn clone_device_as_write_only(&self) -> Result<Self, HIDError> {
        unimplemented!()
    }
}

impl Hash for Device {
    fn hash<H: Hasher>(&self, state: &mut H) {
        unimplemented!()
    }
}

impl FidoDevice for Device {}