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
|
.TH "SHATumbler" 3 "19 Jul 2003" "CommonC++" \" -*- nroff -*-
.ad l
.nh
.SH NAME
SHATumbler \- SHATumbler SHA Helper Class.
.SH SYNOPSIS
.br
.PP
\fC#include <digest.h>\fP
.PP
.SS "Public Methods"
.in +1c
.ti -1c
.RI "\fBSHATumbler\fP (int)"
.br
.ti -1c
.RI "\fBSHATumbler\fP (const SHATumbler &)"
.br
.ti -1c
.RI "SHATumbler & \fBoperator=\fP (const SHATumbler &)"
.br
.ti -1c
.RI "int_type & \fBoperator[]\fP (int)"
.br
.ti -1c
.RI "\fB~SHATumbler\fP ()"
.br
.ti -1c
.RI "SHATumbler \fBoperator+\fP (const SHATumbler &addend) const"
.br
.ti -1c
.RI "SHATumbler & \fBoperator+=\fP (const SHATumbler &addend)"
.br
.ti -1c
.RI "std::ostream & \fBtoString\fP (std::ostream &os)"
.br
.ti -1c
.RI "unsigned \fBgetSize\fP ()"
.br
.ti -1c
.RI "unsigned \fBplaceInBuffer\fP (unsigned char *)"
.br
.in -1c
.SS "Friends"
.in +1c
.ti -1c
.RI "std::ostream & \fBoperator<<\fP (std::ostream &os, SHATumbler< int_type > &ia)"
.br
.in -1c
.SH "DETAILED DESCRIPTION"
.PP
.SS "template<class int_type> class SHATumbler< int_type >"
SHATumbler SHA Helper Class.
.PP
Class used by the SHA \fBDigest\fP Classes.
.PP
Represents a 'tumbler' group, similar to a row in a combination lock. Each part is made to roll-over, its size dependent upon int_type.
.PP
\fBAuthor: \fP
.in +1c
Elizabeth Barham <lizzy@soggytrousers.net>
.PP
.SH "CONSTRUCTOR & DESTRUCTOR DOCUMENTATION"
.PP
.SS "template<class int_type> SHATumbler< int_type >::SHATumbler (int)"
.PP
.SS "template<class int_type> SHATumbler< int_type >::SHATumbler (const SHATumbler< int_type > &)"
.PP
.SS "template<class int_type> SHATumbler< int_type >::~SHATumbler ()"
.PP
.SH "MEMBER FUNCTION DOCUMENTATION"
.PP
.SS "template<class int_type> unsigned SHATumbler< int_type >::getSize ()"
.PP
.SS "template<class int_type> SHATumbler SHATumbler< int_type >::operator+ (const SHATumbler< int_type > & addend) const"
.PP
.SS "template<class int_type> SHATumbler& SHATumbler< int_type >::operator+= (const SHATumbler< int_type > & addend)"
.PP
.SS "template<class int_type> SHATumbler& SHATumbler< int_type >::operator= (const SHATumbler< int_type > &)"
.PP
.SS "template<class int_type> int_type& SHATumbler< int_type >::operator[] (int)"
.PP
.SS "template<class int_type> unsigned SHATumbler< int_type >::placeInBuffer (unsigned char *)"
.PP
.SS "template<class int_type> std::ostream& SHATumbler< int_type >::toString (std::ostream & os)"
.PP
.SH "FRIENDS AND RELATED FUNCTION DOCUMENTATION"
.PP
.SS "template<class int_type> std::ostream& operator<< (std::ostream & os, SHATumbler< int_type > & ia)\fC [friend]\fP"
.PP
.SH "AUTHOR"
.PP
Generated automatically by Doxygen for CommonC++ from the source code.
|