File: hasher_ripemd160.h

package info (click to toggle)
entropybroker 2.8-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,644 kB
  • ctags: 1,591
  • sloc: cpp: 14,384; sh: 934; makefile: 191; java: 148; perl: 12
file content (13 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <cryptopp/ripemd.h>

class hasher_ripemd160: public hasher
{
public:
	hasher_ripemd160();
	~hasher_ripemd160();

	std::string get_name();

	int get_hash_size() const;
	void do_hash(unsigned char *in, int in_size, unsigned char *dest);
};