github.com/lestrrat-go/jwx/v2@v2.0.21/jws/es256k.go (about) 1 //go:build jwx_es256k 2 // +build jwx_es256k 3 4 package jws 5 6 import ( 7 "github.com/lestrrat-go/jwx/v2/jwa" 8 ) 9 10 func init() { 11 addAlgorithmForKeyType(jwa.EC, jwa.ES256K) 12 }