view src/ids.rs @ 84:900d688cd1b9

Fix two inaccuracies in SQL schema
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 06 Dec 2020 21:52:47 +0100
parents fa2a46761712
children
line wrap: on
line source

/// Check if client name and secret are acceptable.
pub fn name_and_secret_acceptable(client: &str, secret: Option<&str>) -> bool {
    !(client.chars().any(|c| !c.is_ascii_alphanumeric())
        || secret
            .unwrap_or("")
            .chars()
            .any(|c| !c.is_ascii_alphanumeric()))
}