303f59dce3
* accommodate salt lengths for RSA PSS * address feedback * generalise salt length to an int * fix error reporting * Revert "fix error reporting" This reverts commit 8adfc15fe3303b8fdf9f094ea246945ab1364077. * fix a faulty check * check for min/max salt lengths * stringly-typed HTTP param * unit tests for sign/verify HTTP requests also, add marshaling for both SDK and HTTP requests * randomly sample valid salt length * add changelog * add documentation
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
package keysutil
|
|
|
|
import (
|
|
"crypto"
|
|
"crypto/sha1"
|
|
"crypto/sha256"
|
|
"crypto/sha512"
|
|
"hash"
|
|
|
|
"golang.org/x/crypto/sha3"
|
|
)
|
|
|
|
type HashType uint32
|
|
|
|
const (
|
|
_ = iota
|
|
HashTypeSHA1 HashType = iota
|
|
HashTypeSHA2224
|
|
HashTypeSHA2256
|
|
HashTypeSHA2384
|
|
HashTypeSHA2512
|
|
HashTypeSHA3224
|
|
HashTypeSHA3256
|
|
HashTypeSHA3384
|
|
HashTypeSHA3512
|
|
)
|
|
|
|
type MarshalingType uint32
|
|
|
|
const (
|
|
_ = iota
|
|
MarshalingTypeASN1 MarshalingType = iota
|
|
MarshalingTypeJWS
|
|
)
|
|
|
|
var (
|
|
HashTypeMap = map[string]HashType{
|
|
"sha1": HashTypeSHA1,
|
|
"sha2-224": HashTypeSHA2224,
|
|
"sha2-256": HashTypeSHA2256,
|
|
"sha2-384": HashTypeSHA2384,
|
|
"sha2-512": HashTypeSHA2512,
|
|
"sha3-224": HashTypeSHA3224,
|
|
"sha3-256": HashTypeSHA3256,
|
|
"sha3-384": HashTypeSHA3384,
|
|
"sha3-512": HashTypeSHA3512,
|
|
}
|
|
|
|
HashFuncMap = map[HashType]func() hash.Hash{
|
|
HashTypeSHA1: sha1.New,
|
|
HashTypeSHA2224: sha256.New224,
|
|
HashTypeSHA2256: sha256.New,
|
|
HashTypeSHA2384: sha512.New384,
|
|
HashTypeSHA2512: sha512.New,
|
|
HashTypeSHA3224: sha3.New224,
|
|
HashTypeSHA3256: sha3.New256,
|
|
HashTypeSHA3384: sha3.New384,
|
|
HashTypeSHA3512: sha3.New512,
|
|
}
|
|
|
|
CryptoHashMap = map[HashType]crypto.Hash{
|
|
HashTypeSHA1: crypto.SHA1,
|
|
HashTypeSHA2224: crypto.SHA224,
|
|
HashTypeSHA2256: crypto.SHA256,
|
|
HashTypeSHA2384: crypto.SHA384,
|
|
HashTypeSHA2512: crypto.SHA512,
|
|
HashTypeSHA3224: crypto.SHA3_224,
|
|
HashTypeSHA3256: crypto.SHA3_256,
|
|
HashTypeSHA3384: crypto.SHA3_384,
|
|
HashTypeSHA3512: crypto.SHA3_512,
|
|
}
|
|
|
|
MarshalingTypeMap = map[string]MarshalingType{
|
|
"asn1": MarshalingTypeASN1,
|
|
"jws": MarshalingTypeJWS,
|
|
}
|
|
)
|