File: control

package info (click to toggle)
libcrcutil 1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,192 kB
  • ctags: 935
  • sloc: cpp: 4,237; sh: 1,112; ansic: 191; makefile: 58; awk: 17
file content (136 lines) | stat: -rw-r--r-- 6,138 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
Source: libcrcutil
Section: libs
Priority: optional
Maintainer: Dmitry Smirnov <onlyjob@debian.org>
Build-Depends: debhelper (>= 9), dh-autoreconf
Build-Depends-Indep: texlive-binaries
                    ,texlive-latex-base
                    ,texlive-latex-extra
Standards-Version: 3.9.7
Homepage: https://code.google.com/p/crcutil/
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/crcutil.git
Vcs-Git: git://anonscm.debian.org/collab-maint/crcutil.git

Package: libcrcutil0
Architecture: any-alpha any-amd64 any-arm any-arm64 any-i386 any-ia64 any-mipsel any-mips64el any-ppc64el any-sh4 any-x32
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: library for cyclic redundancy check (CRC) computation
 Crcutil library provides efficient implementation of CRC algorithms. It
 includes reference implementation of a novel Multiword CRC algorithm
 invented by Andrew Kadatch and Bob Jenkins in early 2007. The new
 algorithm is heavily tuned towards modern Intel and AMD processors and is
 substantially faster than almost all other software CRC algorithms.
 .
 Included whitepaper describes the details of Multiword CRC algorithm as
 well as other algorithms and CRC manipulation routines implemented by
 crcutil library.
 .
 Crcutil library computes:
  * Hardware-assisted CRC32C: 0.13 (Nehalem) CPU cycles per byte.
  * 64-bit and smaller CRCs: 1.0 (Nehalem) - 1.2 (Core) CPU cycles per byte.
  * 128-bit CRCs: 1.7 CPU cycles per byte.
 .
 Since computational speed of 64-bit CRCs is identical to 32-bit and
 16-bit, the use of crcutil library enables widespread use of more reliable
 64-bit CRCs instead of 32-bit ones.
 .
 As a bonus, crcutil also implements a number of useful CRC "tricks" (e.g.
 computation of CRC of concatenated blocks of data of known length and CRC
 without touching actual data).

Package: libcrcutil-dev
Section: libdevel
Architecture: any-alpha any-amd64 any-arm any-arm64 any-i386 any-ia64 any-mipsel any-mips64el any-ppc64el any-sh4 any-x32
Depends: ${misc:Depends}, libcrcutil0 (= ${binary:Version})
Suggests: libcrcutil-doc
Description: library for cyclic redundancy check (CRC) computation - development files
 Crcutil library provides efficient implementation of CRC algorithms. It
 includes reference implementation of a novel Multiword CRC algorithm
 invented by Andrew Kadatch and Bob Jenkins in early 2007. The new
 algorithm is heavily tuned towards modern Intel and AMD processors and is
 substantially faster than almost all other software CRC algorithms.
 .
 Included whitepaper describes the details of Multiword CRC algorithm as
 well as other algorithms and CRC manipulation routines implemented by
 crcutil library.
 .
 Crcutil library computes:
  * Hardware-assisted CRC32C: 0.13 (Nehalem) CPU cycles per byte.
  * 64-bit and smaller CRCs: 1.0 (Nehalem) - 1.2 (Core) CPU cycles per byte.
  * 128-bit CRCs: 1.7 CPU cycles per byte.
 .
 Since computational speed of 64-bit CRCs is identical to 32-bit and
 16-bit, the use of crcutil library enables widespread use of more reliable
 64-bit CRCs instead of 32-bit ones.
 .
 As a bonus, crcutil also implements a number of useful CRC "tricks" (e.g.
 computation of CRC of concatenated blocks of data of known length and CRC
 without touching actual data).
 .
 This package provides development files.

Package: libcrcutil-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Suggests: pdf-viewer
Description: library for cyclic redundancy check (CRC) computation - documentation
 Crcutil library provides efficient implementation of CRC algorithms. It
 includes reference implementation of a novel Multiword CRC algorithm
 invented by Andrew Kadatch and Bob Jenkins in early 2007. The new
 algorithm is heavily tuned towards modern Intel and AMD processors and is
 substantially faster than almost all other software CRC algorithms.
 .
 Included whitepaper describes the details of Multiword CRC algorithm as
 well as other algorithms and CRC manipulation routines implemented by
 crcutil library.
 .
 Crcutil library computes:
  * Hardware-assisted CRC32C: 0.13 (Nehalem) CPU cycles per byte.
  * 64-bit and smaller CRCs: 1.0 (Nehalem) - 1.2 (Core) CPU cycles per byte.
  * 128-bit CRCs: 1.7 CPU cycles per byte.
 .
 Since computational speed of 64-bit CRCs is identical to 32-bit and
 16-bit, the use of crcutil library enables widespread use of more reliable
 64-bit CRCs instead of 32-bit ones.
 .
 As a bonus, crcutil also implements a number of useful CRC "tricks" (e.g.
 computation of CRC of concatenated blocks of data of known length and CRC
 without touching actual data).
 .
 This package provides PDF documentation.

#Package: libcrcutil-dbg
#Section: debug
#Priority: extra
#Architecture: any
#Multi-Arch: same
#Depends: ${misc:Depends}, libcrcutil0 (= ${binary:Version})
#Description: library for cyclic redundancy check (CRC) computation - debugging files
# Crcutil library provides efficient implementation of CRC algorithms. It
# includes reference implementation of a novel Multiword CRC algorithm
# invented by Andrew Kadatch and Bob Jenkins in early 2007. The new
# algorithm is heavily tuned towards modern Intel and AMD processors and is
# substantially faster than almost all other software CRC algorithms.
# .
# Included whitepaper describes the details of Multiword CRC algorithm as
# well as other algorithms and CRC manipulation routines implemented by
# crcutil library.
# .
# Crcutil library computes:
#  * Hardware-assisted CRC32C: 0.13 (Nehalem) CPU cycles per byte.
#  * 64-bit and smaller CRCs: 1.0 (Nehalem) - 1.2 (Core) CPU cycles per byte.
#  * 128-bit CRCs: 1.7 CPU cycles per byte.
# .
# Since computational speed of 64-bit CRCs is identical to 32-bit and
# 16-bit, the use of crcutil library enables widespread use of more reliable
# 64-bit CRCs instead of 32-bit ones.
# .
# As a bonus, crcutil also implements a number of useful CRC "tricks" (e.g.
# computation of CRC of concatenated blocks of data of known length and CRC
# without touching actual data).
# .
# This package provides debugging information.