aboutsummaryrefslogtreecommitdiff
path: root/server/main.go
Commit message (Collapse)AuthorAgeFilesLines
* started to update stfe serverRasmus Dahlberg2021-06-011-50/+40
| | | | Work in progress.
* updated default valuesRasmus Dahlberg2021-03-161-4/+4
|
* started to re-add basic client commandsRasmus Dahlberg2021-03-161-1/+1
|
* added option to run with unregistered namespacesRasmus Dahlberg2021-03-151-11/+13
| | | | Also a few minor fixes such that server binary starts again.
* major refactor based on README.md and TODOsRasmus Dahlberg2021-02-251-10/+10
| | | | | | Updated types, improved units tests, isolated most test data to have it in one place, renamed and created new files to improve readability, and fixed a bunch of minor TODOs.
* added basic server-side cosigning (work in progress)Rasmus Dahlberg2021-02-171-42/+115
|
* updated server package such that it uses namespacesRasmus Dahlberg2021-01-281-32/+29
|
* added instance and log parameter testsRasmus Dahlberg2020-12-021-1/+1
|
* started to clean-up instanceRasmus Dahlberg2020-12-011-4/+41
| | | | | Things like opening files is better place in the server package. Any code that is difficult to test should also not be in the STFE package.
* added an endpoint typeRasmus Dahlberg2020-11-301-2/+2
|
* added and moved test dataRasmus Dahlberg2020-11-301-2/+2
|
* added prometheus metricsRasmus Dahlberg2020-11-041-0/+4
|
* allowed configuration of max-range and max-chainRasmus Dahlberg2020-11-041-1/+3
|
* added chain processing with intermediate certificatesRasmus Dahlberg2020-11-031-2/+2
| | | | | Basic test chains can be generated manually with openssl, see details in server/testdata/x509/README.md.
* go fmtRasmus Dahlberg2020-10-281-1/+1
|
* added ed25519 signing and SDIsRasmus Dahlberg2020-10-271-1/+2
|
* decoupled log instance and infoRasmus Dahlberg2020-10-271-20/+17
| | | | | Makes things a bit more modular. As part of this process I also replaced ct/x509 with crypto/x509, which already suits our needs.
* tested certificate chain code path furtherRasmus Dahlberg2020-10-261-1/+1
| | | | | Added more documentation and quick helper scripts for now. We need to specify which signature schemes we expect/support from submitters.
* added start on get-anchors code pathRasmus Dahlberg2020-10-231-1/+1
|
* added basic trust-anchor code pathRasmus Dahlberg2020-10-231-6/+16
| | | | | Pretty much the bare minimum to load trust anchors from file and check that the submitter's certificate chains back to something valid.
* added basic structureRasmus Dahlberg2020-10-201-0/+52
An STFE server instance that dials the Trillian gRPC back-end, and which listens on six different HTTP endpoints but without any actual processing.