github.com/lestrrat-go/jwx/v2@v2.0.21/jwa/secp2561k.go (about) 1 //go:build jwx_es256k 2 // +build jwx_es256k 3 4 package jwa 5 6 // This constant is only available if compiled with jwx_es256k build tag 7 const Secp256k1 EllipticCurveAlgorithm = "secp256k1" 8 9 func init() { 10 allEllipticCurveAlgorithms[Secp256k1] = struct{}{} 11 }