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
|
.TH "CRC16Digest" 3 "19 Jul 2003" "CommonC++" \" -*- nroff -*-
.ad l
.nh
.SH NAME
CRC16Digest \- A crc16 collection/compution hash accumulator class. crc16 computation hash.
.SH SYNOPSIS
.br
.PP
\fC#include <digest.h>\fP
.PP
Inherits \fBDigest\fP.
.PP
.SS "Public Methods"
.in +1c
.ti -1c
.RI "\fBCRC16Digest\fP ()"
.br
.ti -1c
.RI "void \fBinitDigest\fP (void)"
.br
.ti -1c
.RI "unsigned \fBgetSize\fP (void)"
.br
.ti -1c
.RI "unsigned \fBgetDigest\fP (unsigned char *buffer)"
.br
.ti -1c
.RI "void \fBputDigest\fP (const unsigned char *buffer, unsigned length)"
.br
.in -1c
.SS "Protected Methods"
.in +1c
.ti -1c
.RI "int \fBoverflow\fP (int c)"
.br
.ti -1c
.RI "std::ostream & \fBstrDigest\fP (std::ostream &os)"
.br
.in -1c
.SH "DETAILED DESCRIPTION"
.PP
A crc16 collection/compution hash accumulator class. crc16 computation hash.
.PP
\fBAuthor: \fP
.in +1c
David Sugar <dyfet@ostel.com>
.PP
.SH "CONSTRUCTOR & DESTRUCTOR DOCUMENTATION"
.PP
.SS "CRC16Digest::CRC16Digest ()"
.PP
.SH "MEMBER FUNCTION DOCUMENTATION"
.PP
.SS "unsigned CRC16Digest::getDigest (unsigned char * buffer)\fC [virtual]\fP"
.PP
Implements \fBDigest\fP.
.SS "unsigned CRC16Digest::getSize (void)\fC [inline, virtual]\fP"
.PP
Implements \fBDigest\fP.
.SS "void CRC16Digest::initDigest (void)\fC [inline, virtual]\fP"
.PP
Implements \fBDigest\fP.
.SS "int CRC16Digest::overflow (int c)\fC [protected]\fP"
.PP
.SS "void CRC16Digest::putDigest (const unsigned char * buffer, unsigned length)\fC [virtual]\fP"
.PP
Implements \fBDigest\fP.
.SS "std::ostream& CRC16Digest::strDigest (std::ostream & os)\fC [protected, virtual]\fP"
.PP
Implements \fBDigest\fP.
.SH "AUTHOR"
.PP
Generated automatically by Doxygen for CommonC++ from the source code.
|