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) {