summaryrefslogtreecommitdiffstats
blob: 9f54e8e8cdeaca263bb195291c89ec5b2182e288 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "Swiften/Base/ByteArray.h"

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