Rename crate::yubikey to crate::key

So that it doesn't conflict with the renamed `yubikey` crate.
This commit is contained in:
Jack Grigg
2021-10-18 21:07:23 +01:00
parent 22dfc3ee89
commit 399f0b4c11
5 changed files with 26 additions and 29 deletions
+2 -2
View File
@@ -9,9 +9,9 @@ use yubikey_piv::{
use crate::{ use crate::{
error::Error, error::Error,
key::{self, Stub},
p256::Recipient, p256::Recipient,
util::{Metadata, POLICY_EXTENSION_OID}, util::{Metadata, POLICY_EXTENSION_OID},
yubikey::{self, Stub},
BINARY_NAME, USABLE_SLOTS, BINARY_NAME, USABLE_SLOTS,
}; };
@@ -90,7 +90,7 @@ impl IdentityBuilder {
// No need to ask for users to enter their PIN if the PIN policy requires it, // No need to ask for users to enter their PIN if the PIN policy requires it,
// because here we _always_ require them to enter their PIN in order to access the // because here we _always_ require them to enter their PIN in order to access the
// protected management key (which is necessary in order to generate identities). // protected management key (which is necessary in order to generate identities).
yubikey::manage(yubikey)?; key::manage(yubikey)?;
if let TouchPolicy::Never = touch_policy { if let TouchPolicy::Never = touch_policy {
// No need to touch YubiKey // No need to touch YubiKey
View File
+13 -13
View File
@@ -15,10 +15,10 @@ use yubikey_piv::{
mod builder; mod builder;
mod error; mod error;
mod format; mod format;
mod key;
mod p256; mod p256;
mod plugin; mod plugin;
mod util; mod util;
mod yubikey;
use error::Error; use error::Error;
@@ -148,7 +148,7 @@ impl TryFrom<PluginOptions> for PluginFlags {
} }
fn generate(flags: PluginFlags) -> Result<(), Error> { fn generate(flags: PluginFlags) -> Result<(), Error> {
let mut yubikey = yubikey::open(flags.serial)?; let mut yubikey = key::open(flags.serial)?;
let (stub, recipient, metadata) = builder::IdentityBuilder::new(flags.slot) let (stub, recipient, metadata) = builder::IdentityBuilder::new(flags.slot)
.with_name(flags.name) .with_name(flags.name)
@@ -165,9 +165,9 @@ fn generate(flags: PluginFlags) -> Result<(), Error> {
fn print_single( fn print_single(
serial: Option<Serial>, serial: Option<Serial>,
slot: RetiredSlotId, slot: RetiredSlotId,
printer: impl Fn(yubikey::Stub, p256::Recipient, util::Metadata), printer: impl Fn(key::Stub, p256::Recipient, util::Metadata),
) -> Result<(), Error> { ) -> Result<(), Error> {
let mut yubikey = yubikey::open(serial)?; let mut yubikey = key::open(serial)?;
let mut keys = Key::list(&mut yubikey)?.into_iter().filter_map(|key| { let mut keys = Key::list(&mut yubikey)?.into_iter().filter_map(|key| {
// - We only use the retired slots. // - We only use the retired slots.
@@ -184,7 +184,7 @@ fn print_single(
.find(|(_, s, _)| s == &slot) .find(|(_, s, _)| s == &slot)
.ok_or(Error::SlotHasNoIdentity(slot))?; .ok_or(Error::SlotHasNoIdentity(slot))?;
let stub = yubikey::Stub::new(yubikey.serial(), slot, &recipient); let stub = key::Stub::new(yubikey.serial(), slot, &recipient);
let metadata = x509_parser::parse_x509_certificate(key.certificate().as_ref()) let metadata = x509_parser::parse_x509_certificate(key.certificate().as_ref())
.ok() .ok()
.and_then(|(_, cert)| util::Metadata::extract(&mut yubikey, slot, &cert, true)) .and_then(|(_, cert)| util::Metadata::extract(&mut yubikey, slot, &cert, true))
@@ -199,12 +199,12 @@ fn print_multiple(
kind: &str, kind: &str,
serial: Option<Serial>, serial: Option<Serial>,
all: bool, all: bool,
printer: impl Fn(yubikey::Stub, p256::Recipient, util::Metadata), printer: impl Fn(key::Stub, p256::Recipient, util::Metadata),
) -> Result<(), Error> { ) -> Result<(), Error> {
let mut readers = Readers::open()?; let mut readers = Readers::open()?;
let mut printed = 0; let mut printed = 0;
for reader in readers.iter()?.filter(yubikey::filter_connected) { for reader in readers.iter()?.filter(key::filter_connected) {
let mut yubikey = reader.open()?; let mut yubikey = reader.open()?;
if let Some(serial) = serial { if let Some(serial) = serial {
if yubikey.serial() != serial { if yubikey.serial() != serial {
@@ -228,7 +228,7 @@ fn print_multiple(
_ => continue, _ => continue,
}; };
let stub = yubikey::Stub::new(yubikey.serial(), slot, &recipient); let stub = key::Stub::new(yubikey.serial(), slot, &recipient);
let metadata = match x509_parser::parse_x509_certificate(key.certificate().as_ref()) let metadata = match x509_parser::parse_x509_certificate(key.certificate().as_ref())
.ok() .ok()
.and_then(|(_, cert)| util::Metadata::extract(&mut yubikey, slot, &cert, all)) .and_then(|(_, cert)| util::Metadata::extract(&mut yubikey, slot, &cert, all))
@@ -257,7 +257,7 @@ fn print_details(
kind: &str, kind: &str,
flags: PluginFlags, flags: PluginFlags,
all: bool, all: bool,
printer: impl Fn(yubikey::Stub, p256::Recipient, util::Metadata), printer: impl Fn(key::Stub, p256::Recipient, util::Metadata),
) -> Result<(), Error> { ) -> Result<(), Error> {
if let Some(slot) = flags.slot { if let Some(slot) = flags.slot {
print_single(flags.serial, slot, printer) print_single(flags.serial, slot, printer)
@@ -350,13 +350,13 @@ fn main() -> Result<(), Error> {
eprintln!("make your choice, or press [Esc] or [q] to quit."); eprintln!("make your choice, or press [Esc] or [q] to quit.");
eprintln!(); eprintln!();
if !Readers::open()?.iter()?.any(yubikey::is_connected) { if !Readers::open()?.iter()?.any(key::is_connected) {
eprintln!("⏳ Please insert the YubiKey you want to set up."); eprintln!("⏳ Please insert the YubiKey you want to set up.");
}; };
let mut readers = yubikey::wait_for_readers()?; let mut readers = key::wait_for_readers()?;
// Filter out readers we can't connect to. // Filter out readers we can't connect to.
let readers_list: Vec<_> = readers.iter()?.filter(yubikey::filter_connected).collect(); let readers_list: Vec<_> = readers.iter()?.filter(key::filter_connected).collect();
let reader_names = readers_list let reader_names = readers_list
.iter() .iter()
@@ -447,7 +447,7 @@ fn main() -> Result<(), Error> {
.with_prompt(&format!("Use existing identity in slot {}?", slot_index)) .with_prompt(&format!("Use existing identity in slot {}?", slot_index))
.interact()? .interact()?
{ {
let stub = yubikey::Stub::new(yubikey.serial(), slot, &recipient); let stub = key::Stub::new(yubikey.serial(), slot, &recipient);
let (_, cert) = let (_, cert) =
x509_parser::parse_x509_certificate(key.certificate().as_ref()).unwrap(); x509_parser::parse_x509_certificate(key.certificate().as_ref()).unwrap();
let metadata = let metadata =
+10 -13
View File
@@ -7,12 +7,12 @@ use age_plugin::{
use std::collections::HashMap; use std::collections::HashMap;
use std::io; use std::io;
use crate::{format, p256::Recipient, yubikey, PLUGIN_NAME}; use crate::{format, key, p256::Recipient, PLUGIN_NAME};
#[derive(Debug, Default)] #[derive(Debug, Default)]
pub(crate) struct RecipientPlugin { pub(crate) struct RecipientPlugin {
recipients: Vec<Recipient>, recipients: Vec<Recipient>,
yubikeys: Vec<yubikey::Stub>, yubikeys: Vec<key::Stub>,
} }
impl RecipientPluginV1 for RecipientPlugin { impl RecipientPluginV1 for RecipientPlugin {
@@ -44,7 +44,7 @@ impl RecipientPluginV1 for RecipientPlugin {
bytes: &[u8], bytes: &[u8],
) -> Result<(), recipient::Error> { ) -> Result<(), recipient::Error> {
if let Some(stub) = if plugin_name == PLUGIN_NAME { if let Some(stub) = if plugin_name == PLUGIN_NAME {
yubikey::Stub::from_bytes(bytes, index) key::Stub::from_bytes(bytes, index)
} else { } else {
None None
} { } {
@@ -100,7 +100,7 @@ impl RecipientPluginV1 for RecipientPlugin {
#[derive(Debug, Default)] #[derive(Debug, Default)]
pub(crate) struct IdentityPlugin { pub(crate) struct IdentityPlugin {
yubikeys: Vec<yubikey::Stub>, yubikeys: Vec<key::Stub>,
} }
impl IdentityPluginV1 for IdentityPlugin { impl IdentityPluginV1 for IdentityPlugin {
@@ -111,7 +111,7 @@ impl IdentityPluginV1 for IdentityPlugin {
bytes: &[u8], bytes: &[u8],
) -> Result<(), identity::Error> { ) -> Result<(), identity::Error> {
if let Some(stub) = if plugin_name == PLUGIN_NAME { if let Some(stub) = if plugin_name == PLUGIN_NAME {
yubikey::Stub::from_bytes(bytes, index) key::Stub::from_bytes(bytes, index)
} else { } else {
None None
} { } {
@@ -133,14 +133,11 @@ impl IdentityPluginV1 for IdentityPlugin {
let mut file_keys = HashMap::with_capacity(files.len()); let mut file_keys = HashMap::with_capacity(files.len());
// Filter to files / stanzas for which we have matching YubiKeys // Filter to files / stanzas for which we have matching YubiKeys
let mut candidate_stanzas: Vec<( let mut candidate_stanzas: Vec<(&key::Stub, HashMap<usize, Vec<format::RecipientLine>>)> =
&yubikey::Stub, self.yubikeys
HashMap<usize, Vec<format::RecipientLine>>, .iter()
)> = self .map(|stub| (stub, HashMap::new()))
.yubikeys .collect();
.iter()
.map(|stub| (stub, HashMap::new()))
.collect();
for (file, stanzas) in files.iter().enumerate() { for (file, stanzas) in files.iter().enumerate() {
for (stanza_index, stanza) in stanzas.iter().enumerate() { for (stanza_index, stanza) in stanzas.iter().enumerate() {
+1 -1
View File
@@ -7,7 +7,7 @@ use yubikey_piv::{
Serial, YubiKey, Serial, YubiKey,
}; };
use crate::{error::Error, p256::Recipient, yubikey::Stub, BINARY_NAME, USABLE_SLOTS}; use crate::{error::Error, key::Stub, p256::Recipient, BINARY_NAME, USABLE_SLOTS};
pub(crate) const POLICY_EXTENSION_OID: &[u64] = &[1, 3, 6, 1, 4, 1, 41482, 3, 8]; pub(crate) const POLICY_EXTENSION_OID: &[u64] = &[1, 3, 6, 1, 4, 1, 41482, 3, 8];