forked from golang-jwt/jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for HS384 and HS512 signing methods
Renamed type SigningMethodHS256 to SigningMethodHMAC Added contstants SigningMethodHS256, SigningMethodHS384, and SigningMethodHS512 to support each of these methods Added simple tests to support these new methods
- Loading branch information
Showing
4 changed files
with
94 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package jwt | ||
|
||
import ( | ||
"bytes" | ||
"crypto" | ||
"crypto/hmac" | ||
"errors" | ||
) | ||
|
||
type SigningMethodHMAC struct { | ||
Name string | ||
Hash crypto.Hash | ||
} | ||
|
||
var ( | ||
SigningMethodHS256 *SigningMethodHMAC | ||
SigningMethodHS384 *SigningMethodHMAC | ||
SigningMethodHS512 *SigningMethodHMAC | ||
) | ||
|
||
func init() { | ||
// HS256 | ||
SigningMethodHS256 = &SigningMethodHMAC{"HS256", crypto.SHA256} | ||
RegisterSigningMethod(SigningMethodHS256.Alg(), func() SigningMethod { | ||
return SigningMethodHS256 | ||
}) | ||
|
||
// HS384 | ||
SigningMethodHS384 = &SigningMethodHMAC{"HS384", crypto.SHA384} | ||
RegisterSigningMethod(SigningMethodHS384.Alg(), func() SigningMethod { | ||
return SigningMethodHS384 | ||
}) | ||
|
||
// HS512 | ||
SigningMethodHS512 = &SigningMethodHMAC{"HS512", crypto.SHA512} | ||
RegisterSigningMethod(SigningMethodHS512.Alg(), func() SigningMethod { | ||
return SigningMethodHS512 | ||
}) | ||
} | ||
|
||
func (m *SigningMethodHMAC) Alg() string { | ||
return m.Name | ||
} | ||
|
||
func (m *SigningMethodHMAC) Verify(signingString, signature string, key []byte) error { | ||
// Key | ||
var sig []byte | ||
var err error | ||
if sig, err = DecodeSegment(signature); err == nil { | ||
hasher := hmac.New(m.Hash.New, key) | ||
hasher.Write([]byte(signingString)) | ||
|
||
if !bytes.Equal(sig, hasher.Sum(nil)) { | ||
err = errors.New("Signature is invalid") | ||
} | ||
} | ||
return err | ||
} | ||
|
||
func (m *SigningMethodHMAC) Sign(signingString string, key []byte) (string, error) { | ||
hasher := hmac.New(m.Hash.New, key) | ||
hasher.Write([]byte(signingString)) | ||
|
||
return EncodeSegment(hasher.Sum(nil)), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#5K+���~ew{��Z�(��T�(����P.���Z��G��wb="=.!r.O�͚�gЀ� |