Sign helps implement the SigningMethod interface.
(_ []byte, _ interface{})
| 50 | |
| 51 | // Sign helps implement the SigningMethod interface. |
| 52 | func (_ *SigningMethodNone) Sign(_ []byte, _ interface{}) (Signature, error) { |
| 53 | return nil, nil |
| 54 | } |
| 55 | |
| 56 | // Alg helps implement the SigningMethod interface. |
| 57 | func (m *SigningMethodNone) Alg() string { |
nothing calls this directly
no outgoing calls
no test coverage detected