veyron/runtimes/google/security: replace private key with a generic Signer.
The goal here is to abstract the signing operation so that it can be performed
by agents that don't necessarily want to expose their private keys (e.g.,
ssh-agent, android KeyStore).
Change-Id: Ic118aa006f3bf121f92998392c3a6a21babad599
diff --git a/runtimes/google/security/performance_test.go b/runtimes/google/security/performance_test.go
index 06cbe5e..4f9fd76 100644
--- a/runtimes/google/security/performance_test.go
+++ b/runtimes/google/security/performance_test.go
@@ -58,7 +58,7 @@
func BenchmarkNewChain(b *testing.B) {
for i := 0; i < b.N; i++ {
- if _, err := newChainPrivateID("X"); err != nil {
+ if _, err := newChainPrivateID("X", nil); err != nil {
b.Fatalf("Failed newChainPrivateID #%d: %v", i, err)
}