https://github.com/smallstep/ocsp
Fork of x/crypto/ocsp with some extensions
https://github.com/smallstep/ocsp
Last synced: 4 months ago
JSON representation
Fork of x/crypto/ocsp with some extensions
- Host: GitHub
- URL: https://github.com/smallstep/ocsp
- Owner: smallstep
- License: bsd-3-clause
- Created: 2022-02-11T23:02:04.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T17:21:42.000Z (over 1 year ago)
- Last Synced: 2025-03-03T14:48:02.716Z (about 1 year ago)
- Language: Go
- Size: 96.7 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Archiving because we no longer need the extra extensions this fork was intended for. Using x/crypto/ocsp instead.
# ocsp
Fork of x/crypto/ocsp with some extra extensions.
Add it to your code running:
```console
go get go.step.sm/ocsp
```
## Changes
The changes added in this package are:
* Introduction of `Request.Extensions` with the parsed value of
`requestExtensions`
([rfc6960#section-4.1.1](https://datatracker.ietf.org/doc/html/rfc6960#section-4.1.1))
when parsing OCSP requests.
* Introduction of `Response.ResponseExtensions` with the parsed value of
`responseExtensions`
([rfc6960#section-4.2.1](https://datatracker.ietf.org/doc/html/rfc6960#section-4.2.1))
when parsing OCSP responses.
* Introduction of `Response.ResponseExtraExtensions`, which values will be
populated in the `responseExtesions` field in the `CreateResponse` method.