2020-04-03 23:11:33 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"regexp"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
const (
|
|
|
|
windows = "windows"
|
|
|
|
testStringInput = "abcdefghijkl"
|
|
|
|
|
|
|
|
// RFC3339Zero is the default value for time.Time.Unix().
|
|
|
|
RFC3339Zero = int64(-62135596800)
|
2020-04-03 23:11:33 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// TLS13 is the textual representation of TLS 1.3.
|
|
|
|
TLS13 = "1.3"
|
2020-04-20 21:03:38 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// TLS12 is the textual representation of TLS 1.2.
|
|
|
|
TLS12 = "1.2"
|
2020-04-20 21:03:38 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// TLS11 is the textual representation of TLS 1.1.
|
|
|
|
TLS11 = "1.1"
|
2020-04-20 21:03:38 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// TLS10 is the textual representation of TLS 1.0.
|
|
|
|
TLS10 = "1.0"
|
2020-04-20 21:03:38 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// Hour is an int based representation of the time unit.
|
|
|
|
Hour = time.Minute * 60
|
2020-05-02 16:20:40 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// Day is an int based representation of the time unit.
|
|
|
|
Day = Hour * 24
|
2021-03-22 09:04:09 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// Week is an int based representation of the time unit.
|
|
|
|
Week = Day * 7
|
|
|
|
|
|
|
|
// Year is an int based representation of the time unit.
|
|
|
|
Year = Day * 365
|
|
|
|
|
|
|
|
// Month is an int based representation of the time unit.
|
|
|
|
Month = Year / 12
|
2021-06-18 04:35:43 +00:00
|
|
|
|
|
|
|
clean = "clean"
|
|
|
|
tagged = "tagged"
|
|
|
|
unknown = "unknown"
|
2021-05-04 22:06:05 +00:00
|
|
|
)
|
2020-05-04 19:39:25 +00:00
|
|
|
|
2021-05-04 22:06:05 +00:00
|
|
|
// ErrTimeoutReached error thrown when a timeout is reached.
|
|
|
|
var ErrTimeoutReached = errors.New("timeout reached")
|
|
|
|
var parseDurationRegexp = regexp.MustCompile(`^(?P<Duration>[1-9]\d*?)(?P<Unit>[smhdwMy])?$`)
|
2020-08-21 02:16:23 +00:00
|
|
|
|
|
|
|
// AlphaNumericCharacters are literally just valid alphanumeric chars.
|
|
|
|
var AlphaNumericCharacters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
|
2020-12-03 05:23:52 +00:00
|
|
|
|
|
|
|
// ErrTLSVersionNotSupported returned when an unknown TLS version supplied.
|
|
|
|
var ErrTLSVersionNotSupported = errors.New("supplied TLS version isn't supported")
|