diff options
Diffstat (limited to 'lib/bytes')
| -rw-r--r-- | lib/bytes/bytes.go | 5 |
1 files changed, 5 insertions, 0 deletions
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 |
