summaryrefslogtreecommitdiff
path: root/src/mongo/crypto/mechanism_scram.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/crypto/mechanism_scram.cpp')
-rw-r--r--src/mongo/crypto/mechanism_scram.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/crypto/mechanism_scram.cpp b/src/mongo/crypto/mechanism_scram.cpp
index 086e9943c4c..329da56c9f8 100644
--- a/src/mongo/crypto/mechanism_scram.cpp
+++ b/src/mongo/crypto/mechanism_scram.cpp
@@ -156,8 +156,10 @@ BSONObj generateCredentials(const std::string& hashedPassword, int iterationCoun
std::string encodedServerKey = base64::encode(reinterpret_cast<char*>(serverKey), hashSize);
return BSON(iterationCountFieldName << iterationCount << saltFieldName << encodedUserSalt
- << storedKeyFieldName << encodedStoredKey
- << serverKeyFieldName << encodedServerKey);
+ << storedKeyFieldName
+ << encodedStoredKey
+ << serverKeyFieldName
+ << encodedServerKey);
}
std::string generateClientProof(const unsigned char saltedPassword[hashSize],