remove sha1 from hmac hash suite options

This commit is contained in:
Jeromy 2014-10-29 19:54:41 +00:00
parent 950957240a
commit 98f56ab7e2
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ var SupportedExchanges = "P-256,P-224,P-384,P-521"
var SupportedCiphers = "AES-256,AES-128,Blowfish"
// List of supported Hashes
var SupportedHashes = "SHA256,SHA512,SHA1"
var SupportedHashes = "SHA256,SHA512"
// ErrUnsupportedKeyType is returned when a private key cast/type switch fails.
var ErrUnsupportedKeyType = errors.New("unsupported key type")

View File

@ -1,4 +1,4 @@
tpackage mux
package mux
import (
"errors"