diff options
author | lloyd <[email protected]> | 2011-02-11 14:56:15 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-02-11 14:56:15 +0000 |
commit | 5f4aafe005d1031b955718fbb94d6beec3e6ea48 (patch) | |
tree | 38bf2397935abb71dfa897a4dfea6b439e4d374d /src/hash/keccak | |
parent | e32931ab596731310295592592cd267052664832 (diff) |
Merge fixups
Diffstat (limited to 'src/hash/keccak')
-rw-r--r-- | src/hash/keccak/keccak.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash/keccak/keccak.cpp b/src/hash/keccak/keccak.cpp index 922167b61..107055509 100644 --- a/src/hash/keccak/keccak.cpp +++ b/src/hash/keccak/keccak.cpp @@ -112,12 +112,12 @@ Keccak_1600::Keccak_1600(size_t output_bits) : if(output_bits != 224 && output_bits != 256 && output_bits != 384 && output_bits != 512) throw Invalid_Argument("Keccak_1600: Invalid output length " + - to_string(output_bits)); + std::to_string(output_bits)); } std::string Keccak_1600::name() const { - return "Keccak-1600(" + to_string(output_bits) + ")"; + return "Keccak-1600(" + std::to_string(output_bits) + ")"; } HashFunction* Keccak_1600::clone() const |