diff --git a/README.md b/README.md new file mode 100644 index 0000000..4ff6689 --- /dev/null +++ b/README.md @@ -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 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..6d8d045 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.cacert.org/cacert-goocsp + +go 1.17