()
| 21 | ) |
| 22 | |
| 23 | func init() { |
| 24 | SigningMethodEdDSA = &SigningMethodEd25519{} |
| 25 | RegisterSigningMethod(SigningMethodEdDSA.Alg(), func() SigningMethod { |
| 26 | return SigningMethodEdDSA |
| 27 | }) |
| 28 | } |
| 29 | |
| 30 | func (m *SigningMethodEd25519) Alg() string { |
| 31 | return "EdDSA" |
nothing calls this directly
no test coverage detected