Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/crc/index.html @ 33

Last change on this file since 33 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 2.2 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2<html>
3
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6<title>Boost CRC Library</title>
7</head>
8
9<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
10
11<table border="1" bgcolor="teal" cellpadding="2">
12        <tr>
13                <td bgcolor="white"><img src="../../boost.png"
14                        alt="boost.png (6897 bytes)" WIDTH="277"
15                        HEIGHT="86"></td>
16                <td><a href="../../index.htm"><font face="Arial"
17                        color="white"><big>Home</big></font></a></td>
18                <td><a href="../libraries.htm"><font face="Arial"
19                        color="white"><big>Libraries</big></font></a></td>
20                <td><a href="../../people/people.htm"><font face="Arial"
21                        color="white"><big>People</big></font></a></td>
22                <td><a href="../../more/faq.htm"><font face="Arial"
23                        color="white"><big>FAQ</big></font></a></td>
24                <td><a href="../../more/index.htm"><font face="Arial"
25                        color="white"><big>More</big></font></a></td>
26        </tr>
27</table>
28
29<h1>CRC Library</h1>
30
31<p>The header <cite>crc.hpp</cite> provides two implementations of CRC
32(cyclic redundancy code) computation objects and two implementations of
33CRC computation functions.  The implementations are template-based.</p>
34
35<p>The first object implementation is for theoretical use.  It can
36process single bits, but is considered slow for practical use.  The
37second object implementation is byte-oriented and uses look-up
38tables for fast operation.  The optimized implementation should
39be suitable for general use.  The first function implementation uses the
40optimized object.  The second function implementation allows the use of
41a CRC that directly follows its data.</p>
42
43<ul>
44        <li><a href="crc.html">Documentation</a> (HTML).</li>
45        <li>Header <cite><a href="../../boost/crc.hpp">crc.hpp</a></cite>.</li>
46        <li>See the <a href="crc.html">documentation</a> for links to sample
47                programs.</li>
48        <li>Submitted by Daryle Walker.</li>
49</ul>
50
51<hr>
52
53<p>Revised: 14 May 2001</p>
54
55<p>Copyright 2001 Daryle Walker.  Use, modification, and distribution
56are subject to the Boost Software License, Version 1.0.  (See accompanying
57file <a href="../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or a copy at
58&lt;<a href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>&gt;.)</p>
59
60</body>
61</html>
Note: See TracBrowser for help on using the repository browser.