Rudiments
hash.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4 hash(hash &h) {};
5 hash &operator=(hash &h) { return *this; };
6
7 protected:
8 bytebuffer *getIn();
9 bytebuffer *getOut();
10 virtual void setError(hasherror_t err);
11 void setDirty(bool dirty);
12 bool getDirty();
13
14 private:
15 void construct();
16 void initSalt();
17
18 hashprivate *pvt;
Definition bytebuffer.h:13
Definition hash.h:20