Files
Курнат Андрей 2315f25754 Initial QSfera import
2026-06-07 10:20:04 +03:00

13 lines
192 B
Go

//go:build jwx_es256k
package jws
import (
"github.com/lestrrat-go/jwx/v3/jwa"
)
func init() {
// Register ES256K to EC algorithm family
addAlgorithmForKeyType(jwa.EC(), jwa.ES256K())
}