| 86 | } |
| 87 | |
| 88 | type InProcessSigner struct { |
| 89 | privateKey []byte |
| 90 | cryptoAlgorithm CryptoAlgorithm |
| 91 | } |
| 92 | |
| 93 | func (c *InProcessSigner) GetSignedTimestamp(_ context.Context) (*string, []byte, error) { |
| 94 | fmt.Fprintf(os.Stdout, "Signing in process using key algorithm %s\n", c.cryptoAlgorithm) |
nothing calls this directly
no outgoing calls
no test coverage detected