| 58 | }; |
| 59 | |
| 60 | static std::string attribute_name (const char* key_name) |
| 61 | { |
| 62 | if (key_name) { |
| 63 | // named key |
| 64 | return std::string("git-crypt-") + key_name; |
| 65 | } else { |
| 66 | // default key |
| 67 | return "git-crypt"; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | static std::string git_version_string () |
| 72 | { |
no outgoing calls
no test coverage detected