rpty at least working

This commit is contained in:
2025-08-12 02:50:10 +09:00
parent 05cb0823b4
commit d818acc53d
16 changed files with 568 additions and 403 deletions

View File

@ -8,16 +8,16 @@ import "testing"
func TestJwt(t *testing.T) {
var tok string
var err error
type JWTClaim struct {
Abc string `json:"abc"`
Donkey string `json:"donkey"`
IssuedAt int `json:"iat"`
}
}
var jc JWTClaim
jc.Abc = "def"
jc.Donkey = "kong"
jc.Donkey = "kong"
jc.IssuedAt = 111
var key *rsa.PrivateKey