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

namespace Swift {
	class ByteArray;

	class HMACSHA1 {
		public:
			static ByteArray getResult(const ByteArray& key, const ByteArray& data);
	};
}