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

Delta Between Two Patch Sets: src/pkg/crypto/blowfish/cipher.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/aes/const.go ('k') | src/pkg/crypto/cast5/cast5.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 implements Bruce Schneier's Blowfish encryption algorithm. 5 // Package blowfish implements Bruce Schneier's Blowfish encryption algorithm.
6 package blowfish 6 package blowfish
7 7
8 // The code is a port of Bruce Schneier's C implementation. 8 // The code is a port of Bruce Schneier's C implementation.
9 // See http://www.schneier.com/blowfish.html. 9 // See http://www.schneier.com/blowfish.html.
10 10
11 import ( 11 import (
12 "os" 12 "os"
13 "strconv" 13 "strconv"
14 ) 14 )
15 15
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 // Reset zeros the key data, so that it will no longer 71 // Reset zeros the key data, so that it will no longer
72 // appear in the process's memory. 72 // appear in the process's memory.
73 func (c *Cipher) Reset() { 73 func (c *Cipher) Reset() {
74 zero(c.p[0:]) 74 zero(c.p[0:])
75 zero(c.s0[0:]) 75 zero(c.s0[0:])
76 zero(c.s1[0:]) 76 zero(c.s1[0:])
77 zero(c.s2[0:]) 77 zero(c.s2[0:])
78 zero(c.s3[0:]) 78 zero(c.s3[0:])
79 } 79 }
LEFTRIGHT

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