From e8940bde01307d269269bfb760950f36b5acefa2 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Wed, 31 Oct 2018 23:57:31 +0700 Subject: lib/bytes: add list of ASCII letters with numbers --- lib/bytes/bytes.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/bytes') diff --git a/lib/bytes/bytes.go b/lib/bytes/bytes.go index d9288c7d..2a803942 100644 --- a/lib/bytes/bytes.go +++ b/lib/bytes/bytes.go @@ -13,6 +13,11 @@ const ( // ASCIILetters contains list of lower and upper case characters in // ASCII. ASCIILetters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" + + // ASCIILettersNumbers contains list of lower and upper case + // characters in ASCII with numbers. + ASCIILettersNumber = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890" + // HexaLETTERS contains list of hexadecimal characters in upper cases. HexaLETTERS = "0123456789ABCDEF" // HexaLetters contains list of hexadecimal characters in lower and -- cgit v1.3-6-g1900