Skip to content

Commit 80b6a75

Browse files
committed
Fixed visiblity of token alphanumeric generator.
1 parent f22c576 commit 80b6a75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/token.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ impl std::ops::Deref for NewSecureToken {
8484
}
8585
}
8686

87-
pub(crate) fn generate_secure_alphanumeric_string(len: usize) -> String {
87+
fn generate_secure_alphanumeric_string(len: usize) -> String {
8888
const CHARS: &[u8] = b"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
8989

9090
OsRng

0 commit comments

Comments
 (0)