aboutsummaryrefslogtreecommitdiffstats
path: root/src/kdf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kdf.cpp')
-rw-r--r--src/kdf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kdf.cpp b/src/kdf.cpp
index dad00204d..5dd53b957 100644
--- a/src/kdf.cpp
+++ b/src/kdf.cpp
@@ -19,7 +19,7 @@ SecureVector<byte> KDF::derive_key(u32bit key_len,
const std::string& salt) const
{
return derive_key(key_len, secret, secret.size(),
- (const byte*)salt.c_str(), salt.length());
+ (const byte*)salt.data(), salt.length());
}
/*************************************************
@@ -52,7 +52,7 @@ SecureVector<byte> KDF::derive_key(u32bit key_len,
const std::string& salt) const
{
return derive_key(key_len, secret, secret_len,
- (const byte*)salt.c_str(), salt.length());
+ (const byte*)salt.data(), salt.length());
}
/*************************************************