summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/SHA-3/HashFunction.h
blob: 26545e384714a46719e59a3df90ea9fb6c7ee1c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

class HashFunction
{
public:
	HashFunction(void);
	virtual ~HashFunction(void);

	virtual void addData(uint8_t input) = 0;
	virtual void addData(const uint8_t *input, unsigned int off, unsigned int len) = 0;
};