pub fn generate_backup_code(length: usize) -> StringExpand description
Generates the plain text backup codes.
Uses a CHARSET list excluding confusing characters like 0, O, 1, l, etc. to generate a list of backup codes.
§Arguments
length- The length of each backup code.
§Returns
A Vec<String> containing the generated backup codes.
§Example
let backup_codes = generate_backup_codes(8);