1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
package shacrypt
const (
// EncodingFmt is the encoding format for this algorithm.
EncodingFmt = "$%s$rounds=%d$%s$%s"
// EncodingFmtRoundsOmitted is the encoding format for this algorithm when the rounds can be omitted.
EncodingFmtRoundsOmitted = "$%s$%s$%s"
// AlgName is the name for this algorithm.
AlgName = "shacrypt"
// AlgIdentifierSHA256 is the identifier used in encoded SHA256 variants of this algorithm.
AlgIdentifierSHA256 = "5"
// AlgIdentifierSHA512 is the identifier used in encoded SHA512 variants of this algorithm.
AlgIdentifierSHA512 = "6"
// IterationsMin is the minimum number of iterations accepted.
IterationsMin = 1000
// IterationsMax is the maximum number of iterations accepted.
IterationsMax = 999999999
// IterationsDefaultSHA256 is the default number of iterations for SHA256.
IterationsDefaultSHA256 = 1000000
// IterationsDefaultSHA512 is the default number of iterations for SHA512.
IterationsDefaultSHA512 = 500000
// IterationsDefaultOmitted is the default number of iterations when the rounds are omitted.
IterationsDefaultOmitted = 5000
// SaltLengthMin is the minimum salt length.
SaltLengthMin = 1
// SaltLengthMax is the maximum salt length.
SaltLengthMax = 16
// SaltCharSet are the valid characters for the salt.
SaltCharSet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789./"
)
const (
variantDefault = VariantSHA512
)
|