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

Side by Side Diff: src/pkg/hash/crc32/crc32.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/hash/adler32/adler32.go ('k') | src/pkg/hash/crc64/crc64.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 the 32-bit cyclic redundancy check, or CRC-32, checks um. 5 // Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32,
6 // See http://en.wikipedia.org/wiki/Cyclic_redundancy_check for information. 6 // checksum. See http://en.wikipedia.org/wiki/Cyclic_redundancy_check for
7 // information.
7 package crc32 8 package crc32
8 9
9 import ( 10 import (
10 "hash" 11 "hash"
11 "os" 12 "os"
12 ) 13 )
13 14
14 // The size of a CRC-32 checksum in bytes. 15 // The size of a CRC-32 checksum in bytes.
15 const Size = 4 16 const Size = 4
16 17
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 return p 103 return p
103 } 104 }
104 105
105 // Checksum returns the CRC-32 checksum of data 106 // Checksum returns the CRC-32 checksum of data
106 // using the polynomial represented by the Table. 107 // using the polynomial represented by the Table.
107 func Checksum(data []byte, tab *Table) uint32 { return update(0, tab, data) } 108 func Checksum(data []byte, tab *Table) uint32 { return update(0, tab, data) }
108 109
109 // ChecksumIEEE returns the CRC-32 checksum of data 110 // ChecksumIEEE returns the CRC-32 checksum of data
110 // using the IEEE polynomial. 111 // using the IEEE polynomial.
111 func ChecksumIEEE(data []byte) uint32 { return update(0, IEEETable, data) } 112 func ChecksumIEEE(data []byte) uint32 { return update(0, IEEETable, data) }
OLDNEW
« no previous file with comments | « src/pkg/hash/adler32/adler32.go ('k') | src/pkg/hash/crc64/crc64.go » ('j') | no next file with comments »

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