Make KEY_CHARSET only public to crate

This commit is contained in:
Alex Page 2023-06-24 18:14:31 -04:00
parent b2609ecda4
commit 8dc063e4e5

View file

@ -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',
];