(rand io.Reader, data []byte, algorithm string)
| 117 | } |
| 118 | |
| 119 | func (l *loggingAlgorithmSigner) SignWithAlgorithm(rand io.Reader, data []byte, algorithm string) (*Signature, error) { |
| 120 | l.used = append(l.used, algorithm) |
| 121 | return l.AlgorithmSigner.SignWithAlgorithm(rand, data, algorithm) |
| 122 | } |
| 123 | |
| 124 | func TestClientAuthPublicKey(t *testing.T) { |
| 125 | signer := &loggingAlgorithmSigner{AlgorithmSigner: testSigners["rsa"].(AlgorithmSigner)} |
nothing calls this directly
no test coverage detected