ProteoWizard
Public Member Functions | Private Attributes
pwiz::util::SHA1_ostream Class Reference

ostream filter for calculating a SHA-1 hash of data on the fly More...

#include <SHA1_ostream.hpp>

List of all members.

Public Member Functions

 SHA1_ostream (std::ostream &os, int bufferSize=4096)
std::string hash ()
void explicitFlush ()

Private Attributes

std::ostream & os_
SHA1Filter filter_

Detailed Description

ostream filter for calculating a SHA-1 hash of data on the fly

Definition at line 87 of file SHA1_ostream.hpp.


Constructor & Destructor Documentation

pwiz::util::SHA1_ostream::SHA1_ostream ( std::ostream &  os,
int  bufferSize = 4096 
)
inline

Definition at line 91 of file SHA1_ostream.hpp.

References filter_.

: os_(os), filter_(bufferSize)
{
push(filter_);
push(os);
}

Member Function Documentation

std::string pwiz::util::SHA1_ostream::hash ( )
inline

Definition at line 98 of file SHA1_ostream.hpp.

References filter_, and pwiz::util::SHA1Filter::hash().

Referenced by test().

{return filter_.hash();}
void pwiz::util::SHA1_ostream::explicitFlush ( )
inline

Definition at line 100 of file SHA1_ostream.hpp.

References os_.

Referenced by test().

{
// hack: not flushing properly with the filter in the pipeline
pop(); // this flushes os_ explicitly
push(os_);
}

Member Data Documentation

std::ostream& pwiz::util::SHA1_ostream::os_
private

Definition at line 108 of file SHA1_ostream.hpp.

Referenced by explicitFlush().

SHA1Filter pwiz::util::SHA1_ostream::filter_
private

Definition at line 109 of file SHA1_ostream.hpp.

Referenced by hash(), and SHA1_ostream().


The documentation for this class was generated from the following file: