1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 14:28:07 +00:00

fix(core): add missing semicolon into the passphrase entry for TS3

This commit is contained in:
grdddj 2024-01-02 12:25:29 +01:00 committed by Jiří Musil
parent c09f9e88e2
commit c2eaaaf8b5
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
[T2B1] Add missing semicolon character to the passphrase entry

View File

@ -31,7 +31,7 @@ const MAX_PASSPHRASE_LENGTH: usize = 50;
const DIGITS: &str = "0123456789";
const LOWERCASE_LETTERS: &str = "abcdefghijklmnopqrstuvwxyz";
const UPPERCASE_LETTERS: &str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const SPECIAL_SYMBOLS: &str = "_<>.:@/|\\!()+%&-[]?{},\'`\"~$^=*#";
const SPECIAL_SYMBOLS: &str = "_<>.:@/|\\!()+%&-[]?{},\'`;\"~$^=*#";
const MENU_LENGTH: usize = 8;
const SHOW_INDEX: usize = 0;