Verify helps implement the SigningMethod interface.
(_ []byte, _ Signature, _ interface{})
| 45 | |
| 46 | // Verify helps implement the SigningMethod interface. |
| 47 | func (_ *SigningMethodNone) Verify(_ []byte, _ Signature, _ interface{}) error { |
| 48 | return nil |
| 49 | } |
| 50 | |
| 51 | // Sign helps implement the SigningMethod interface. |
| 52 | func (_ *SigningMethodNone) Sign(_ []byte, _ interface{}) (Signature, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected