Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(725)

Delta Between Two Patch Sets: src/pkg/crypto/ocsp/ocsp.go

Issue 4442064: code review 4442064: src/pkg: make package doc comments consistently start w... (Closed)
Left Patch Set: Created 13 years, 11 months ago
Right Patch Set: diff -r 1c953954868a https://go.googlecode.com/hg/ Created 13 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/crypto/md5/md5.go ('k') | src/pkg/crypto/openpgp/armor/armor.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b