jwt/rs256.go

46 lines
1.0 KiB
Go
Raw Normal View History

2012-04-18 03:49:21 +04:00
package jwt
2012-04-18 05:41:12 +04:00
import (
"errors"
"encoding/pem"
"crypto"
"crypto/x509"
"crypto/rsa"
2012-04-18 09:50:26 +04:00
"crypto/sha256"
2012-04-18 05:41:12 +04:00
)
type SigningMethodRS256 struct {}
2012-04-18 03:49:21 +04:00
func init() {
RegisterSigningMethod("RS256", func() SigningMethod {
return new(SigningMethodRS256)
})
}
2012-04-18 03:58:52 +04:00
2012-04-18 05:41:12 +04:00
func (m *SigningMethodRS256) Verify(signingString, signature string, key []byte)(err error) {
// Key
var sig []byte
2012-04-18 23:18:31 +04:00
if sig, err = DecodeSegment(signature); err == nil {
2012-04-18 05:41:12 +04:00
var block *pem.Block
if block, _ = pem.Decode(key); block != nil {
var parsedKey interface{}
if parsedKey, err = x509.ParsePKIXPublicKey(block.Bytes); err == nil {
if rsaKey, ok := parsedKey.(*rsa.PublicKey); ok {
2012-04-18 09:50:26 +04:00
hasher := sha256.New()
2012-04-18 05:41:12 +04:00
hasher.Write([]byte(signingString))
err = rsa.VerifyPKCS1v15(rsaKey, crypto.SHA256, hasher.Sum(nil), sig)
} else {
err = errors.New("Key is not a valid RSA public key")
}
}
} else {
err = errors.New("Could not parse key data")
}
}
return
2012-04-18 03:58:52 +04:00
}
2012-04-18 23:18:31 +04:00
func (m *SigningMethodRS256) Sign(token *Token, key []byte)error {
2012-04-18 03:58:52 +04:00
return nil
}