#irox #api-bindings #irox-safe

irox-safe-windows

Wrappers around the windows native unsafe functions to make them ergonomic

2 releases

0.1.1 Mar 3, 2024
0.1.0 Dec 23, 2023

#119 in Windows APIs

37 downloads per month
Used in irox-unsafe

MIT/Apache

20KB
360 lines

IROX-SAFE-WINDOWS

Wrappers around the windows native unsafe functions to make them ergonomic

Credentials Cache

  • Prompt for a username & password:
use irox_safe_windows::credentials::{Credentials, PromptOptions, prompt};
use irox_safe_windows::error::Error;

pub fn main() -> Result<(), Error> {
    let options = PromptOptions::new()
        .with_title("Little Title Text!")
        .with_subtitle("Big Title Text!");
    let creds : Credentials = prompt(&options)?;
    let username : &String = &creds.username;
    let password : &String = &creds.password;
    let user_requested_save : &bool = &creds.save_requested;
    Ok(())
}

img.png

Dependencies

~0–40MB
~560K SLoC