type github.com/golang-jwt/jwt/v5.SigningMethodHMAC
10 uses
github.com/golang-jwt/jwt/v5 (current package)
hmac.go#L11: type SigningMethodHMAC struct {
hmac.go#L18: SigningMethodHS256 *SigningMethodHMAC
hmac.go#L19: SigningMethodHS384 *SigningMethodHMAC
hmac.go#L20: SigningMethodHS512 *SigningMethodHMAC
hmac.go#L26: SigningMethodHS256 = &SigningMethodHMAC{"HS256", crypto.SHA256}
hmac.go#L32: SigningMethodHS384 = &SigningMethodHMAC{"HS384", crypto.SHA384}
hmac.go#L38: SigningMethodHS512 = &SigningMethodHMAC{"HS512", crypto.SHA512}
hmac.go#L44: func (m *SigningMethodHMAC) Alg() string {
hmac.go#L58: func (m *SigningMethodHMAC) Verify(signingString string, sig []byte, key interface{}) error {
hmac.go#L91: func (m *SigningMethodHMAC) 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. |