SigningMethodNone is the default "none" algorithm.
| 38 | |
| 39 | // SigningMethodNone is the default "none" algorithm. |
| 40 | type SigningMethodNone struct { |
| 41 | Name string |
| 42 | Hash crypto.Hash |
| 43 | _ struct{} |
| 44 | } |
| 45 | |
| 46 | // Verify helps implement the SigningMethod interface. |
| 47 | func (_ *SigningMethodNone) Verify(_ []byte, _ Signature, _ interface{}) error { |
nothing calls this directly
no outgoing calls
no test coverage detected