PublicKey returns the public key of the Rekor signing key
(ctx context.Context)
| 526 | |
| 527 | // PublicKey returns the public key of the Rekor signing key |
| 528 | func PublicKey(ctx context.Context) []byte { |
| 529 | state := testenv.FetchState[rekorState](ctx) |
| 530 | |
| 531 | return state.KeyPair.PublicBytes |
| 532 | } |
| 533 | |
| 534 | func IsRunning(ctx context.Context) bool { |
| 535 | return testenv.HasState[rekorState](ctx) |