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

#include "Swiften/Base/ByteArray.h"

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

#endif