Initial project setup
- add go.mod and README
This commit is contained in:
parent
8f92a10aee
commit
446d4b8225
2 changed files with 15 additions and 0 deletions
12
README.md
Normal file
12
README.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# OCSP responder for CAcert
|
||||
|
||||
This project aims to provide an OCSP responder implementation for CAcert.
|
||||
|
||||
## Requirements
|
||||
|
||||
* the sources for OCSP answers should be files
|
||||
* certificates that are not listed in those files will be answered as `unknown`
|
||||
* the responder must support multiple CA certificates
|
||||
* the responder must support multiple OCSP signing certificates
|
||||
* responses must be signed
|
||||
* responses must contain the signing certificate
|
3
go.mod
Normal file
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module git.cacert.org/cacert-goocsp
|
||||
|
||||
go 1.17
|
Loading…
Reference in a new issue