aboutsummaryrefslogtreecommitdiff
path: root/server
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
|
* added basic instructions to run the server locallyRasmus Dahlberg2021-03-161-0/+60
|
* 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-3024-284/+2
|
* restored intermediate pem certificateRasmus Dahlberg2020-11-271-6/+6
| | | | It got replaced by mistake a few days ago.
* started to refactor proper testdata into x509utilRasmus Dahlberg2020-11-254-39/+16
|
* added start on isolated trillian checksRasmus Dahlberg2020-11-233-125/+0
|
* added test dataRasmus Dahlberg2020-11-177-0/+68
|
* added test dataRasmus Dahlberg2020-11-161-14/+42
|
* move test helpers to testdata packageRasmus Dahlberg2020-11-113-2/+81
|
* added test dataRasmus Dahlberg2020-11-101-0/+18
|
* moved package from stfe/server/descriptor to stfe/descriptorRasmus Dahlberg2020-11-053-181/+0
|
* added prometheus metricsRasmus Dahlberg2020-11-041-0/+4
|
* allowed configuration of max-range and max-chainRasmus Dahlberg2020-11-041-1/+3
|
* removed obsolete test scriptsRasmus Dahlberg2020-11-037-106/+0
|
* added test dataRasmus Dahlberg2020-11-031-0/+3
|
* added chain processing with intermediate certificatesRasmus Dahlberg2020-11-0325-204/+164
| | | | | Basic test chains can be generated manually with openssl, see details in server/testdata/x509/README.md.
* removed fixed TODOsRasmus Dahlberg2020-11-033-3/+0
|
* fixed signature verification and client get-sthRasmus Dahlberg2020-11-031-0/+10
|
* added helper to load log operators from fileRasmus Dahlberg2020-11-031-0/+15
|
* fixed FindLog such that it uses a list of operatorsRasmus Dahlberg2020-11-033-8/+10
|
* added start on stfe clientRasmus Dahlberg2020-11-026-3/+22
| | | | | | ChecksumV1 entries can be submitted using client-side ed25519 signatures. The resulting SignedDebugInfoV1 is then verified using the log's announced signature scheme and public key (currently only ed25519).
* added stfe server descriptorRasmus Dahlberg2020-11-023-0/+154
| | | | A collection of immutable log parameters, see documentation.
* refactor types and documentationRasmus Dahlberg2020-10-301-4/+2
| | | | | | 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.
* started refactoring add-entry code path according to docRasmus Dahlberg2020-10-301-1/+3
|
* go fmtRasmus Dahlberg2020-10-281-1/+1
|
* added consistency-proof code pathRasmus Dahlberg2020-10-281-0/+16
|
* added signed tree head and get-sth code pathRasmus Dahlberg2020-10-281-0/+9
|
* added ed25519 signing and SDIsRasmus Dahlberg2020-10-273-1/+7
|
* 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.
* fixed url typoRasmus Dahlberg2020-10-271-1/+1
|
* added additional interactive test scriptsRasmus Dahlberg2020-10-275-7/+55
|
* tested certificate chain code path furtherRasmus Dahlberg2020-10-2623-197/+287
| | | | | 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-236-6/+212
| | | | | Pretty much the bare minimum to load trust anchors from file and check that the submitter's certificate chains back to something valid.
* added .gitignoreRasmus Dahlberg2020-10-202-0/+1
|
* added basic structureRasmus Dahlberg2020-10-202-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.