mirror of
https://github.com/kakwa/uts-server
synced 2024-11-05 09:18:50 +01:00
69386d966f
The code in build_param_table.py is modified to write directly to a file, and this code is included in the conf.py file. The static configure.rst file is removed |
||
---|---|---|
cmake | ||
conf | ||
docs | ||
goodies | ||
inc | ||
src | ||
tests | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
ChangeLog.rst | ||
CMakeLists.txt | ||
LICENSE | ||
README.rst |
uts-server
Micro RFC 3161 Time-Stamp server written in C.
- Doc
- Dev
- License
-
MIT
- Author
-
Pierre-Francois Carpentier - copyright © 2016
License
Released under the MIT Public License
Quick Start
# Building with civetweb embedded (will recover civetweb from github).
$ cmake . -DBUNDLE_CIVETWEB=ON
$ make
# Create some test certificates.
$ ./tests/cfg/pki/create_tsa_certs
# Launching the time-stamp server with test configuration in debug mode.
$ ./uts-server -c tests/cfg/uts-server.cnf -D
# In another shell, launching a time-stamp script on the README.md file.
$ ./goodies/timestamp-file.sh -i README.rst -u http://localhost:2020 -r -O "-cert";
# Verify the time-stamp.
$ openssl ts -verify -in README.rst.tsr -data README.rst -CAfile ./tests/cfg/pki/tsaca.pem
# Display the time-stamp content.
$ openssl ts -reply -in README.rst.tsr -text