Depenancy upgrades and movign to dep. (#8630)

Этот коммит содержится в:
Christopher Speller
2018-04-16 05:37:14 -07:00
коммит произвёл Joram Wilander
родитель bf24f51c4e
Коммит 6e2cb00008
5345 изменённых файлов: 17051 добавлений и 1634753 удалений

11
vendor/github.com/stretchr/objx/security.go сгенерированный поставляемый
Просмотреть файл

@@ -5,8 +5,13 @@ import (
"encoding/hex"
)
// HashWithKey hashes the specified string using the security key
// 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[:])
hash := sha1.New()
_, err := hash.Write([]byte(data + ":" + key))
if err != nil {
return ""
}
return hex.EncodeToString(hash.Sum(nil))
}