diff options
author | Elias Fleckenstein <54945686+EliasFleckenstein03@users.noreply.github.com> | 2020-11-04 16:57:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 16:57:47 +0100 |
commit | 3e16c3a78fff61c20e63ba730d15e94e3bb877b4 (patch) | |
tree | c070350db219f2c4241d22bc31949685c7b42fe9 /src/util/auth.h | |
parent | 5d9ae5a91c544fc7fbd475decf47cef7e09ef8fc (diff) | |
parent | 6ccb5835ff55d85156be91473c598eca9d6cb9a6 (diff) | |
download | dragonfireclient-3e16c3a78fff61c20e63ba730d15e94e3bb877b4.tar.xz |
Merge branch 'master' into master
Diffstat (limited to 'src/util/auth.h')
-rw-r--r-- | src/util/auth.h | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/util/auth.h b/src/util/auth.h index c04bb63a6..ba827f322 100644 --- a/src/util/auth.h +++ b/src/util/auth.h @@ -20,25 +20,28 @@ with this program; if not, write to the Free Software Foundation, Inc., #pragma once /// Gets the base64 encoded legacy password db entry. -std::string translate_password(const std::string &name, const std::string &password); +std::string translate_password(const std::string &name, + const std::string &password); /// Creates a verification key with given salt and password. -std::string generate_srp_verifier(const std::string &name, const std::string &password, - const std::string &salt); +std::string generate_srp_verifier(const std::string &name, + const std::string &password, const std::string &salt); /// Creates a verification key and salt with given password. -void generate_srp_verifier_and_salt(const std::string &name, const std::string &password, - std::string *verifier, std::string *salt); +void generate_srp_verifier_and_salt(const std::string &name, + const std::string &password, std::string *verifier, + std::string *salt); /// Gets an SRP verifier, generating a salt, /// and encodes it as DB-ready string. -std::string get_encoded_srp_verifier( - const std::string &name, const std::string &password); +std::string get_encoded_srp_verifier(const std::string &name, + const std::string &password); /// Converts the passed SRP verifier into a DB-ready format. -std::string encode_srp_verifier(const std::string &verifier, const std::string &salt); +std::string encode_srp_verifier(const std::string &verifier, + const std::string &salt); /// Reads the DB-formatted SRP verifier and gets the verifier /// and salt components. -bool decode_srp_verifier_and_salt( - const std::string &encoded, std::string *verifier, std::string *salt); +bool decode_srp_verifier_and_salt(const std::string &encoded, + std::string *verifier, std::string *salt); |