(contents []string)
| 123 | } |
| 124 | |
| 125 | func entryptionKeys(contents []string) []string { |
| 126 | result := []string{} |
| 127 | for _, content := range contents { |
| 128 | result = append(result, entryptionKey(content)) |
| 129 | } |
| 130 | |
| 131 | return result |
| 132 | } |
| 133 | |
| 134 | func entryptionKey(content string) string { |
| 135 | for _, entryptionKeyConfig := range _entryptionKeyConfigs { |
no test coverage detected