Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Avoid using std::cout and std::cerr within cli code | Jack Lloyd | 2017-09-02 | 1 | -1/+0 |
| | | | | Prevents redirection using --output and --error-output | ||||
* | Fix various MSVC warnings | Jack Lloyd | 2017-08-31 | 1 | -4/+2 |
| | | | | Based on VC2017 output | ||||
* | Reformat code with astyle + fix code style | Tomasz Frydrych | 2017-05-01 | 1 | -6/+20 |
| | |||||
* | Move TLS cert verification callback from Credentials_Manager to TLS::Callbacks | Jack Lloyd | 2016-11-23 | 1 | -18/+0 |
| | | | | | | It is the only function in C_M which is called on to process session-specific (and adversarially provided) inputs, rather than passively returning some credential which is typically not session specific. | ||||
* | Add /etc/ssl/certs to default cert path | Jack Lloyd | 2016-08-30 | 1 | -1/+1 |
| | | | | Really this should be configurable via flags... | ||||
* | CLI rewrite | Jack Lloyd | 2015-12-19 | 1 | -15/+15 |
| | | | | | | | | | | | | | | | | | | The command line tools' origin as a collection of examples and test programs glued together led to some unfortunate problems; lots of hardcoded values, missing parameters, and obsolete crypto. Adds a small library for writing command line programs of the sort needed here (cli.h), which cuts the length of many of the commands in half and makes commands more pleasant to write and extend. Generalizes a lot of the commands also, eg previously only signing/verification with DSA/SHA-1 was included! Removes the fuzzer entry point since that's fairly useless outside of an instrumented build. Removes the in-library API for benchmarking. | ||||
* | Rename cmd/app -> cli | Simon Warta | 2015-12-09 | 1 | -0/+158 |