...

Source file src/github.com/lestrrat-go/jwx/jws/es256k.go

Documentation: github.com/lestrrat-go/jwx/jws

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

View as plain text