SigningKey returns the latest valid key for signing. A valid key is one that is both past its start time and before its deletion time.
(ctx context.Context)
| 46 | // SigningKey returns the latest valid key for signing. A valid key is one |
| 47 | // that is both past its start time and before its deletion time. |
| 48 | SigningKey(ctx context.Context) (id string, key interface{}, err error) |
| 49 | // VerifyingKey returns the key with the provided id which should map to its |
| 50 | // sequence number. The key is valid for verifying as long as it is not deleted |
| 51 | // or past its deletion date. We must allow for keys prior to their start time |
no outgoing calls