Sign returns the signature for the given request
(context.Context)
| 32 | type SignRequest interface { |
| 33 | // Sign returns the signature for the given request |
| 34 | Sign(context.Context) (string, error) |
| 35 | // VerifySign returns true if the signature is valid |
| 36 | VerifySign(context.Context, string) (bool, error) |
| 37 | } |
no outgoing calls