| 78 | } |
| 79 | |
| 80 | type MemKeyPairStorage struct { |
| 81 | id cache.Cache |
| 82 | public cache.Cache |
| 83 | } |
| 84 | |
| 85 | func (m *MemKeyPairStorage) AddKey(keyPair *KeyPair) error { |
| 86 | if err := keyPair.Validate(); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected