uniauth 2.1.1

Easy-to-use abstraction over authentication
Documentation
1
2
3
4
5
6
7
8
9
10
//! Request ids

/// Sign a challenge for a service's action
pub const AUTHENTICATE: u8 = 0;
/// Get the public key for a service
pub const PUBKEY: u8 = 1;
/// Store a keypair for a service
pub const STORE: u8 = 2;
/// Generate a new keypair for a service
pub const GENERATE: u8 = 3;