From 2ecf348a9d00af8757efd1310b71c7c7e8f34cb7 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 14 Nov 2016 23:12:14 +0100 Subject: Move swarmHash to its own file. --- libdevcore/SHA3.h | 1 - 1 file changed, 1 deletion(-) (limited to 'libdevcore/SHA3.h') diff --git a/libdevcore/SHA3.h b/libdevcore/SHA3.h index ea0c761d..c481bfc9 100644 --- a/libdevcore/SHA3.h +++ b/libdevcore/SHA3.h @@ -53,5 +53,4 @@ inline std::string keccak256(std::string const& _input, bool _isNibbles) { retur /// Calculate SHA3-256 MAC inline void keccak256mac(bytesConstRef _secret, bytesConstRef _plain, bytesRef _output) { keccak256(_secret.toBytes() + _plain.toBytes()).ref().populate(_output); } -h256 swarmHash(bytes const& _data); } -- cgit