Keys return the last version of the valid keys
()
| 467 | |
| 468 | // Keys return the last version of the valid keys |
| 469 | func (i *Identity) Keys() []*Key { |
| 470 | return i.lastVersion().keys |
| 471 | } |
| 472 | |
| 473 | // SigningKey return the key that should be used to sign new messages. If no key is available, return nil. |
| 474 | func (i *Identity) SigningKey(repo repository.RepoKeyring) (*Key, error) { |
no test coverage detected