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

Side by Side Diff: src/pkg/crypto/xtea/cipher.go

Issue 4442064: code review 4442064: src/pkg: make package doc comments consistently start w... (Closed)
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:
View unified diff | Download patch
« no previous file with comments | « src/pkg/crypto/x509/x509.go ('k') | src/pkg/debug/dwarf/open.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 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 XTEA encryption, as defined in Needham and 5 // Package xtea implements XTEA encryption, as defined in Needham and Wheeler's
6 // Wheeler's 1997 technical report, "Tea extensions." 6 // 1997 technical report, "Tea extensions."
7 package xtea 7 package xtea
8 8
9 // For details, see http://www.cix.co.uk/~klockstone/xtea.pdf 9 // For details, see http://www.cix.co.uk/~klockstone/xtea.pdf
10 10
11 import ( 11 import (
12 "os" 12 "os"
13 "strconv" 13 "strconv"
14 ) 14 )
15 15
16 // The XTEA block size in bytes. 16 // The XTEA block size in bytes.
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 // Two rounds of XTEA applied per loop 84 // Two rounds of XTEA applied per loop
85 for i := 0; i < numRounds; { 85 for i := 0; i < numRounds; {
86 c.table[i] = sum + k[sum&3] 86 c.table[i] = sum + k[sum&3]
87 i++ 87 i++
88 sum += delta 88 sum += delta
89 c.table[i] = sum + k[(sum>>11)&3] 89 c.table[i] = sum + k[(sum>>11)&3]
90 i++ 90 i++
91 } 91 }
92 } 92 }
OLDNEW
« no previous file with comments | « src/pkg/crypto/x509/x509.go ('k') | src/pkg/debug/dwarf/open.go » ('j') | no next file with comments »

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