vendor: Update golang.org/x/crypto/...

This commit is contained in:
Jakob Borg
2016-09-13 21:47:46 +02:00
parent 897cca0a82
commit 9bf6917ae8
4 changed files with 57 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ func NewCipher(key []byte) (*Cipher, error) {
// NewSaltedCipher creates a returns a Cipher that folds a salt into its key
// schedule. For most purposes, NewCipher, instead of NewSaltedCipher, is
// sufficient and desirable. For bcrypt compatiblity, the key can be over 56
// sufficient and desirable. For bcrypt compatibility, the key can be over 56
// bytes.
func NewSaltedCipher(key, salt []byte) (*Cipher, error) {
if len(salt) == 0 {