]> Cypherpunks repositories - gostls13.git/commit
crypto/ocsp: add package to parse OCSP responses.
authorAdam Langley <agl@golang.org>
Wed, 21 Jul 2010 14:07:22 +0000 (10:07 -0400)
committerAdam Langley <agl@golang.org>
Wed, 21 Jul 2010 14:07:22 +0000 (10:07 -0400)
commit8286ee4c5b94d5245cae6a369cb3e417b1d622ee
treea413281519165dacad8073c6b14e3b2a7a3950b4
parent8975d36412b0587d3c665681ce65cf7705d40a98
crypto/ocsp: add package to parse OCSP responses.

        OCSP is the preferred X.509 revocation mechanism. X.509 certificates
        can contain a URL from which can be fetched a signed response saying
        "this certificate is valid until $x" (where $x is usually 7 days in the
        future). These are called OCSP responses and they can also be included
        in the TLS handshake itself ("OCSP stapling")

R=rsc, r
CC=golang-dev
https://golang.org/cl/1875043
src/pkg/crypto/ocsp/ocsp.go [new file with mode: 0644]
src/pkg/crypto/ocsp/ocsp_test.go [new file with mode: 0644]