OLD | NEW |
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 Loading... |
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) } |
OLD | NEW |