| 1361 | } |
| 1362 | |
| 1363 | void help_export_key (std::ostream& out) |
| 1364 | { |
| 1365 | // |--------------------------------------------------------------------------------| 80 chars |
| 1366 | out << "Usage: git-crypt export-key [OPTIONS] FILENAME" << std::endl; |
| 1367 | out << std::endl; |
| 1368 | out << " -k, --key-name KEYNAME Export the given key, instead of the default" << std::endl; |
| 1369 | out << std::endl; |
| 1370 | out << "When FILENAME is -, export to standard out." << std::endl; |
| 1371 | } |
| 1372 | int export_key (int argc, const char** argv) |
| 1373 | { |
| 1374 | // TODO: provide options to export only certain key versions |
no outgoing calls
no test coverage detected