435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
13 lines
243 B
Go
13 lines
243 B
Go
package objx
|
|
|
|
import (
|
|
"crypto/sha1"
|
|
"encoding/hex"
|
|
)
|
|
|
|
// HashWithKey hashes the specified string using the security key
|
|
func HashWithKey(data, key string) string {
|
|
d := sha1.Sum([]byte(data + ":" + key))
|
|
return hex.EncodeToString(d[:])
|
|
}
|