aboutsummaryrefslogtreecommitdiffstats
path: root/libdevcore/SHA3.h
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-11-15 06:12:14 +0800
committerchriseth <c@ethdev.com>2016-11-15 06:25:12 +0800
commit2ecf348a9d00af8757efd1310b71c7c7e8f34cb7 (patch)
treead37b4c90212875b014a21ebec6c4aa221e40bd7 /libdevcore/SHA3.h
parent8944b092f8de074ec2c98434cb4c76d804146bd6 (diff)
downloaddexon-solidity-2ecf348a9d00af8757efd1310b71c7c7e8f34cb7.tar.gz
dexon-solidity-2ecf348a9d00af8757efd1310b71c7c7e8f34cb7.tar.zst
dexon-solidity-2ecf348a9d00af8757efd1310b71c7c7e8f34cb7.zip
Move swarmHash to its own file.
Diffstat (limited to 'libdevcore/SHA3.h')
-rw-r--r--libdevcore/SHA3.h1
1 files changed, 0 insertions, 1 deletions
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);
}