Make KEY_CHARSET only public to crate
This commit is contained in:
parent
b2609ecda4
commit
8dc063e4e5
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ use openssl::bn::BigNum;
|
|||
const PK_LENGTH: usize = 25;
|
||||
|
||||
/// The allowed character set in a product key.
|
||||
pub const KEY_CHARSET: [char; 24] = [
|
||||
pub(crate) const KEY_CHARSET: [char; 24] = [
|
||||
'B', 'C', 'D', 'F', 'G', 'H', 'J', 'K', 'M', 'P', 'Q', 'R', 'T', 'V', 'W', 'X', 'Y', '2', '3',
|
||||
'4', '6', '7', '8', '9',
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue