| 107 | } |
| 108 | |
| 109 | type loggingAlgorithmSigner struct { |
| 110 | used []string |
| 111 | AlgorithmSigner |
| 112 | } |
| 113 | |
| 114 | func (l *loggingAlgorithmSigner) Sign(rand io.Reader, data []byte) (*Signature, error) { |
| 115 | l.used = append(l.used, "[Sign]") |
nothing calls this directly
no outgoing calls
no test coverage detected