summaryrefslogtreecommitdiff
path: root/modules/crypto/c++/hash.hpp
blob: 3d25b4e067c19d313c76547b53644d508ce51c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

namespace saw {
namespace crypto {
struct Argon2i {};
}

template<typename Crypto>
class hash;

template<>
class hash<crypto::Argon2i> {
public:

	data<schema::String> apply(const data<schema::Array<schema::UInt8>>& input){
		return {""};
	}
};
}