summaryrefslogtreecommitdiffstats
blob: 7d432ac1aa0085311e55aeb9f4b058d51c61c0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SWIFTEN_SHA1_H
#define SWIFTEN_SHA1_H

#include "Swiften/Base/ByteArray.h"

namespace Swift {
	class SHA1 {
		public:
			static ByteArray getBinaryHash(const ByteArray& data);
		};
}

#endif