mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 04:11:34 -06:00
40 lines
918 B
C++
Executable File
40 lines
918 B
C++
Executable File
// OutStreamWithSha1.h
|
|
|
|
#ifndef ZIP7_INC_OUT_STREAM_WITH_SHA1_H
|
|
#define ZIP7_INC_OUT_STREAM_WITH_SHA1_H
|
|
|
|
#include "../../../../C/Sha1.h"
|
|
|
|
#include "../../../Common/MyBuffer2.h"
|
|
#include "../../../Common/MyCom.h"
|
|
|
|
#include "../../IStream.h"
|
|
|
|
Z7_CLASS_IMP_NOQIB_1(
|
|
COutStreamWithSha1
|
|
, ISequentialOutStream
|
|
)
|
|
CMyComPtr<ISequentialOutStream> _stream;
|
|
UInt64 _size;
|
|
// CSha1 _sha;
|
|
bool _calculate;
|
|
CAlignedBuffer1 _sha;
|
|
|
|
CSha1 *Sha() { return (CSha1 *)(void *)(Byte *)_sha; }
|
|
public:
|
|
COutStreamWithSha1(): _sha(sizeof(CSha1)) {}
|
|
void SetStream(ISequentialOutStream *stream) { _stream = stream; }
|
|
void ReleaseStream() { _stream.Release(); }
|
|
void Init(bool calculate = true)
|
|
{
|
|
_size = 0;
|
|
_calculate = calculate;
|
|
Sha1_Init(Sha());
|
|
}
|
|
void InitSha1() { Sha1_Init(Sha()); }
|
|
UInt64 GetSize() const { return _size; }
|
|
void Final(Byte *digest) { Sha1_Final(Sha(), digest); }
|
|
};
|
|
|
|
#endif
|