LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // This package parses OCSP responses as specified in RFC 2560. OCSP responses | 5 // Package ocsp parses OCSP responses as specified in RFC 2560. OCSP responses |
6 // are signed messages attesting to the validity of a certificate for a small | 6 // are signed messages attesting to the validity of a certificate for a small |
7 // period of time. This is used to manage revocation for X.509 certificates. | 7 // period of time. This is used to manage revocation for X.509 certificates. |
8 package ocsp | 8 package ocsp |
9 | 9 |
10 import ( | 10 import ( |
11 "asn1" | 11 "asn1" |
12 "crypto" | 12 "crypto" |
13 "crypto/rsa" | 13 "crypto/rsa" |
14 _ "crypto/sha1" | 14 _ "crypto/sha1" |
15 "crypto/x509" | 15 "crypto/x509" |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 ret.RevokedAt = r.Revoked.RevocationTime | 195 ret.RevokedAt = r.Revoked.RevocationTime |
196 ret.RevocationReason = r.Revoked.Reason | 196 ret.RevocationReason = r.Revoked.Reason |
197 } | 197 } |
198 | 198 |
199 ret.ProducedAt = basicResp.TBSResponseData.ProducedAt | 199 ret.ProducedAt = basicResp.TBSResponseData.ProducedAt |
200 ret.ThisUpdate = r.ThisUpdate | 200 ret.ThisUpdate = r.ThisUpdate |
201 ret.NextUpdate = r.NextUpdate | 201 ret.NextUpdate = r.NextUpdate |
202 | 202 |
203 return ret, nil | 203 return ret, nil |
204 } | 204 } |
LEFT | RIGHT |