aboutsummaryrefslogtreecommitdiff
path: root/lib/bytes
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2018-10-31 23:57:31 +0700
committerShulhan <ms@kilabit.info>2018-10-31 23:57:31 +0700
commite8940bde01307d269269bfb760950f36b5acefa2 (patch)
treecf49901c3efeea196290333edc6623bb7cdbcf9e /lib/bytes
parent1d7ff3f27c7c458f06967f98d5ef2feebc243f36 (diff)
downloadpakakeh.go-e8940bde01307d269269bfb760950f36b5acefa2.tar.xz
lib/bytes: add list of ASCII letters with numbers
Diffstat (limited to 'lib/bytes')
-rw-r--r--lib/bytes/bytes.go5
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