diff options
Diffstat (limited to 'modules/crypto/c++/hash.hpp')
-rw-r--r-- | modules/crypto/c++/hash.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/crypto/c++/hash.hpp b/modules/crypto/c++/hash.hpp new file mode 100644 index 0000000..3d25b4e --- /dev/null +++ b/modules/crypto/c++/hash.hpp @@ -0,0 +1,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 {""}; + } +}; +} |