2012-04-18 03:49:21 +04:00
|
|
|
package jwt
|
|
|
|
|
2012-04-18 05:41:12 +04:00
|
|
|
import (
|
|
|
|
"crypto"
|
2012-07-07 04:02:20 +04:00
|
|
|
"crypto/rand"
|
2012-04-18 05:41:12 +04:00
|
|
|
"crypto/rsa"
|
|
|
|
)
|
|
|
|
|
2014-08-27 02:30:37 +04:00
|
|
|
// Implements the RSA family of signing methods signing methods
|
2014-07-06 02:34:31 +04:00
|
|
|
type SigningMethodRSA struct {
|
|
|
|
Name string
|
|
|
|
Hash crypto.Hash
|
|
|
|
}
|
|
|
|
|
2014-08-27 02:30:37 +04:00
|
|
|
// Specific instances for RS256 and company
|
2014-07-06 02:34:31 +04:00
|
|
|
var (
|
|
|
|
SigningMethodRS256 *SigningMethodRSA
|
|
|
|
SigningMethodRS384 *SigningMethodRSA
|
|
|
|
SigningMethodRS512 *SigningMethodRSA
|
|
|
|
)
|
2012-04-18 03:49:21 +04:00
|
|
|
|
|
|
|
func init() {
|
2014-07-06 02:34:31 +04:00
|
|
|
// RS256
|
|
|
|
SigningMethodRS256 = &SigningMethodRSA{"RS256", crypto.SHA256}
|
|
|
|
RegisterSigningMethod(SigningMethodRS256.Alg(), func() SigningMethod {
|
|
|
|
return SigningMethodRS256
|
|
|
|
})
|
|
|
|
|
|
|
|
// RS384
|
|
|
|
SigningMethodRS384 = &SigningMethodRSA{"RS384", crypto.SHA384}
|
|
|
|
RegisterSigningMethod(SigningMethodRS384.Alg(), func() SigningMethod {
|
|
|
|
return SigningMethodRS384
|
|
|
|
})
|
|
|
|
|
|
|
|
// RS512
|
|
|
|
SigningMethodRS512 = &SigningMethodRSA{"RS512", crypto.SHA512}
|
|
|
|
RegisterSigningMethod(SigningMethodRS512.Alg(), func() SigningMethod {
|
|
|
|
return SigningMethodRS512
|
2012-04-18 03:49:21 +04:00
|
|
|
})
|
|
|
|
}
|
2012-04-18 03:58:52 +04:00
|
|
|
|
2014-07-06 02:34:31 +04:00
|
|
|
func (m *SigningMethodRSA) Alg() string {
|
|
|
|
return m.Name
|
2012-07-07 02:43:17 +04:00
|
|
|
}
|
|
|
|
|
2014-08-07 11:45:21 +04:00
|
|
|
// Implements the Verify method from SigningMethod
|
2015-07-20 20:23:11 +03:00
|
|
|
// For this signing method, must be an rsa.PublicKey structure.
|
2014-08-04 22:26:53 +04:00
|
|
|
func (m *SigningMethodRSA) Verify(signingString, signature string, key interface{}) error {
|
2014-07-06 02:50:46 +04:00
|
|
|
var err error
|
|
|
|
|
|
|
|
// Decode the signature
|
2012-04-18 05:41:12 +04:00
|
|
|
var sig []byte
|
2014-07-06 02:50:46 +04:00
|
|
|
if sig, err = DecodeSegment(signature); err != nil {
|
|
|
|
return err
|
2012-04-18 05:41:12 +04:00
|
|
|
}
|
2014-07-06 02:50:46 +04:00
|
|
|
|
2014-08-07 11:45:21 +04:00
|
|
|
var rsaKey *rsa.PublicKey
|
2015-07-20 20:23:11 +03:00
|
|
|
var ok bool
|
2014-08-07 11:45:21 +04:00
|
|
|
|
2015-07-20 20:23:11 +03:00
|
|
|
if rsaKey, ok = key.(*rsa.PublicKey); !ok {
|
2014-08-04 22:26:53 +04:00
|
|
|
return ErrInvalidKey
|
|
|
|
}
|
2014-08-07 11:45:21 +04:00
|
|
|
|
|
|
|
// Create hasher
|
2014-08-27 02:00:15 +04:00
|
|
|
if !m.Hash.Available() {
|
|
|
|
return ErrHashUnavailable
|
|
|
|
}
|
2014-08-07 11:45:21 +04:00
|
|
|
hasher := m.Hash.New()
|
|
|
|
hasher.Write([]byte(signingString))
|
|
|
|
|
|
|
|
// Verify the signature
|
|
|
|
return rsa.VerifyPKCS1v15(rsaKey, m.Hash, hasher.Sum(nil), sig)
|
2012-04-18 03:58:52 +04:00
|
|
|
}
|
|
|
|
|
2014-06-28 22:31:26 +04:00
|
|
|
// Implements the Sign method from SigningMethod
|
2015-07-20 20:23:11 +03:00
|
|
|
// For this signing method, must be an rsa.PrivateKey structure.
|
2014-08-04 22:26:53 +04:00
|
|
|
func (m *SigningMethodRSA) Sign(signingString string, key interface{}) (string, error) {
|
2014-08-06 14:13:23 +04:00
|
|
|
var rsaKey *rsa.PrivateKey
|
2015-07-20 20:23:11 +03:00
|
|
|
var ok bool
|
2014-07-06 02:50:46 +04:00
|
|
|
|
2015-07-20 20:23:11 +03:00
|
|
|
// Validate type of key
|
|
|
|
if rsaKey, ok = key.(*rsa.PrivateKey); !ok {
|
2014-08-06 14:13:23 +04:00
|
|
|
return "", ErrInvalidKey
|
2012-07-07 02:43:17 +04:00
|
|
|
}
|
2014-08-27 02:00:15 +04:00
|
|
|
|
2014-08-06 14:13:23 +04:00
|
|
|
// Create the hasher
|
2014-08-27 02:00:15 +04:00
|
|
|
if !m.Hash.Available() {
|
|
|
|
return "", ErrHashUnavailable
|
|
|
|
}
|
|
|
|
|
2014-08-06 14:13:23 +04:00
|
|
|
hasher := m.Hash.New()
|
|
|
|
hasher.Write([]byte(signingString))
|
2014-07-06 02:50:46 +04:00
|
|
|
|
2014-08-06 14:13:23 +04:00
|
|
|
// Sign the string and return the encoded bytes
|
|
|
|
if sigBytes, err := rsa.SignPKCS1v15(rand.Reader, rsaKey, m.Hash, hasher.Sum(nil)); err == nil {
|
|
|
|
return EncodeSegment(sigBytes), nil
|
|
|
|
} else {
|
|
|
|
return "", err
|
|
|
|
}
|
2012-04-18 23:59:37 +04:00
|
|
|
}
|