diff options
author | lloyd <[email protected]> | 2010-09-03 15:43:44 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-03 15:43:44 +0000 |
commit | d8fcd41ea72d7e00924bb78baa698565de825844 (patch) | |
tree | fcbec308eb5fcbd6a822c608359313917902c04b /src/pbkdf | |
parent | 7e54763ea43c8b34729387c7429922dd981c4f5b (diff) |
Use std::to_string
Diffstat (limited to 'src/pbkdf')
-rw-r--r-- | src/pbkdf/pbkdf2/pbkdf2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pbkdf/pbkdf2/pbkdf2.cpp b/src/pbkdf/pbkdf2/pbkdf2.cpp index 6f6a514f8..5409c2c56 100644 --- a/src/pbkdf/pbkdf2/pbkdf2.cpp +++ b/src/pbkdf/pbkdf2/pbkdf2.cpp @@ -30,7 +30,7 @@ OctetString PKCS5_PBKDF2::derive_key(u32bit key_len, catch(Invalid_Key_Length) { throw Exception(name() + " cannot accept passphrases of length " + - to_string(passphrase.length())); + std::to_string(passphrase.length())); } SecureVector<byte> key(key_len); |