mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
5fd597ddaf
* added banners and icons * fix: formatting
90 lines
2.2 KiB
Rust
90 lines
2.2 KiB
Rust
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//! [](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/authenticator)
|
|
//!
|
|
//! Use hardware security-keys in your Tauri App.
|
|
//!
|
|
//! - Supported platforms: Windows, Linux, FreeBSD, NetBSD, OpenBSD, and macOS.
|
|
|
|
#![doc(
|
|
html_logo_url = "https://github.com/tauri-apps/tauri/raw/dev/app-icon.png",
|
|
html_favicon_url = "https://github.com/tauri-apps/tauri/raw/dev/app-icon.png"
|
|
)]
|
|
#![cfg(not(any(target_os = "android", target_os = "ios")))]
|
|
|
|
mod auth;
|
|
mod error;
|
|
mod u2f;
|
|
|
|
use tauri::{
|
|
plugin::{Builder as PluginBuilder, TauriPlugin},
|
|
Runtime,
|
|
};
|
|
|
|
pub use error::Error;
|
|
type Result<T> = std::result::Result<T, Error>;
|
|
|
|
#[tauri::command]
|
|
fn init_auth() {
|
|
auth::init_usb();
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn register(timeout: u64, challenge: String, application: String) -> crate::Result<String> {
|
|
auth::register(application, timeout, challenge)
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn verify_registration(
|
|
challenge: String,
|
|
application: String,
|
|
register_data: String,
|
|
client_data: String,
|
|
) -> crate::Result<String> {
|
|
u2f::verify_registration(application, challenge, register_data, client_data)
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn sign(
|
|
timeout: u64,
|
|
challenge: String,
|
|
application: String,
|
|
key_handle: String,
|
|
) -> crate::Result<String> {
|
|
auth::sign(application, timeout, challenge, key_handle)
|
|
}
|
|
|
|
#[tauri::command]
|
|
fn verify_signature(
|
|
challenge: String,
|
|
application: String,
|
|
sign_data: String,
|
|
client_data: String,
|
|
key_handle: String,
|
|
pubkey: String,
|
|
) -> crate::Result<u32> {
|
|
u2f::verify_signature(
|
|
application,
|
|
challenge,
|
|
sign_data,
|
|
client_data,
|
|
key_handle,
|
|
pubkey,
|
|
)
|
|
}
|
|
|
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
|
PluginBuilder::new("authenticator")
|
|
.js_init_script(include_str!("api-iife.js").to_string())
|
|
.invoke_handler(tauri::generate_handler![
|
|
init_auth,
|
|
register,
|
|
verify_registration,
|
|
sign,
|
|
verify_signature
|
|
])
|
|
.build()
|
|
}
|