diff options
| author | Shulhan <ms@kilabit.info> | 2018-10-31 23:57:31 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2018-10-31 23:57:31 +0700 |
| commit | e8940bde01307d269269bfb760950f36b5acefa2 (patch) | |
| tree | cf49901c3efeea196290333edc6623bb7cdbcf9e /lib/bytes | |
| parent | 1d7ff3f27c7c458f06967f98d5ef2feebc243f36 (diff) | |
| download | pakakeh.go-e8940bde01307d269269bfb760950f36b5acefa2.tar.xz | |
lib/bytes: add list of ASCII letters with numbers
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 |
