(key keys.MasterKey)
| 530 | } |
| 531 | |
| 532 | func id(key keys.MasterKey) string { |
| 533 | return fmt.Sprintf("%s: %s", key.TypeToIdentifier(), key.ToString()) |
| 534 | } |
| 535 | |
| 536 | func ids(keys []keys.MasterKey) []string { |
| 537 | result := make([]string, 0, len(keys)) |
no test coverage detected