auths-core 0.1.1

Core cryptography and keychain integration for Auths
Documentation
1
2
3
4
5
6
//! Utility helpers.

/// Trim and lowercase an alias string to produce a canonical form.
pub fn sanitize_alias(alias: &str) -> String {
    alias.trim().to_lowercase()
}