mirror of https://github.com/golang-jwt/jwt.git
Added save signature to Token struct after successful signing. Corresponding test.
This commit is contained in:
parent
bc8bdca5cc
commit
d56d945cea
2
token.go
2
token.go
|
@ -71,6 +71,8 @@ func (t *Token) SignedString(key interface{}) (string, error) {
|
|||
return "", err
|
||||
}
|
||||
|
||||
t.Signature = sig
|
||||
|
||||
return sstr + "." + t.EncodeSegment(sig), nil
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
package jwt_test
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/base64"
|
||||
"encoding/json"
|
||||
"math"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
|
@ -124,3 +127,21 @@ func TestNumericDate_MarshalJSON(t *testing.T) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetSignatureAfterSigning(t *testing.T) {
|
||||
token := jwt.New(jwt.SigningMethodHS256, nil)
|
||||
signedString, err := token.SignedString([]byte("test12345"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
sigStr := signedString[strings.LastIndex(signedString, ".")+1:]
|
||||
sig, err := base64.RawURLEncoding.DecodeString(sigStr)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if !bytes.Equal(sig, token.Signature) {
|
||||
t.Errorf("token.Signature not equal to signature in signed string")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue