jwt/rs256.go

11 lines
157 B
Go
Raw Normal View History

2012-04-18 03:49:21 +04:00
package jwt
type SigningMethodRS256 struct {
}
func init() {
RegisterSigningMethod("RS256", func() SigningMethod {
return new(SigningMethodRS256)
})
}