aboutsummaryrefslogtreecommitdiff
path: root/instance.go
Commit message (Collapse)AuthorAgeFilesLines
* moved endpoint type into typesRasmus Dahlberg2021-06-011-9/+9
|
* re-added all endpointsRasmus Dahlberg2021-06-011-2/+2
| | | | To be tested in greater detail.
* started to update stfe serverRasmus Dahlberg2021-06-011-6/+7
| | | | Work in progress.
* added option to run with unregistered namespacesRasmus Dahlberg2021-03-151-3/+8
| | | | Also a few minor fixes such that server binary starts again.
* major refactor based on README.md and TODOsRasmus Dahlberg2021-02-251-96/+42
| | | | | | 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.
* renamed sth and cosigning endpointsRasmus Dahlberg2021-02-221-7/+7
|
* added basic server-side cosigning (work in progress)Rasmus Dahlberg2021-02-171-14/+23
|
* updated server package such that it uses namespacesRasmus Dahlberg2021-01-281-2/+1
|
* started replacing x509 with namespaceRasmus Dahlberg2021-01-271-27/+15
|
* added instance and log parameter testsRasmus Dahlberg2020-12-021-20/+25
|
* started to clean-up instanceRasmus Dahlberg2020-12-011-92/+49
| | | | | 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.
* renamed and documented functionRasmus Dahlberg2020-12-011-10/+10
|
* attached url method on endpoint typeRasmus Dahlberg2020-12-011-6/+12
|
* removed possible todoRasmus Dahlberg2020-12-011-2/+0
| | | | | These named get parameter will anyway be hard-coded in some places, e.g., on structs that can be exported as json.
* removed explicit string functionRasmus Dahlberg2020-12-011-10/+6
|
* added an endpoint typeRasmus Dahlberg2020-11-301-9/+45
|
* added buildChainFromDerList testsRasmus Dahlberg2020-11-271-1/+1
|
* cleaned-up x509utilRasmus Dahlberg2020-11-271-2/+20
|
* replaced sync.Once with init()Rasmus Dahlberg2020-11-101-1/+0
|
* moved publlic x509 helpers into a separate packageRasmus Dahlberg2020-11-051-2/+3
|
* renamed appHandler to handlerRasmus Dahlberg2020-11-051-7/+7
|
* added prometheus metricsRasmus Dahlberg2020-11-041-0/+5
|
* moved extended key usage to log parametersRasmus Dahlberg2020-11-041-0/+2
|
* allowed configuration of max-range and max-chainRasmus Dahlberg2020-11-041-3/+3
|
* added certificate chain length checkingRasmus Dahlberg2020-11-041-0/+2
|
* refactor types and documentationRasmus Dahlberg2020-10-301-11/+10
| | | | | | Structured files a bit better, added more documentation, switched to pointers as default (unless specifically motivated not to do so), and encapsulated TLS (un)marshaling for the respective types that use it.
* added max range and get-entries sanity checkingRasmus Dahlberg2020-10-301-0/+2
|
* started refactoring add-entry code path according to docRasmus Dahlberg2020-10-301-1/+1
|
* added hash function (sha256) in log parametersRasmus Dahlberg2020-10-291-0/+2
|
* go fmtRasmus Dahlberg2020-10-281-1/+1
|
* added ed25519 signing and SDIsRasmus Dahlberg2020-10-271-2/+18
|
* decoupled log instance and infoRasmus Dahlberg2020-10-271-30/+58
| | | | | Makes things a bit more modular. As part of this process I also replaced ct/x509 with crypto/x509, which already suits our needs.
* added start on get-anchors code pathRasmus Dahlberg2020-10-231-13/+15
|
* added basic trust-anchor code pathRasmus Dahlberg2020-10-231-1/+4
| | | | | 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/+50
An STFE server instance that dials the Trillian gRPC back-end, and which listens on six different HTTP endpoints but without any actual processing.