type github.com/golang-jwt/jwt/v5.SigningMethodECDSA
10 uses
github.com/golang-jwt/jwt/v5 (current package)
ecdsa.go#L18: type SigningMethodECDSA struct {
ecdsa.go#L27: SigningMethodES256 *SigningMethodECDSA
ecdsa.go#L28: SigningMethodES384 *SigningMethodECDSA
ecdsa.go#L29: SigningMethodES512 *SigningMethodECDSA
ecdsa.go#L34: SigningMethodES256 = &SigningMethodECDSA{"ES256", crypto.SHA256, 32, 256}
ecdsa.go#L40: SigningMethodES384 = &SigningMethodECDSA{"ES384", crypto.SHA384, 48, 384}
ecdsa.go#L46: SigningMethodES512 = &SigningMethodECDSA{"ES512", crypto.SHA512, 66, 521}
ecdsa.go#L52: func (m *SigningMethodECDSA) Alg() string {
ecdsa.go#L58: func (m *SigningMethodECDSA) Verify(signingString string, sig []byte, key interface{}) error {
ecdsa.go#L92: func (m *SigningMethodECDSA) Sign(signingString string, key interface{}) ([]byte, error) {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |