Skip to content

Commit e56458d

Browse files
committed
CSHARP-2160: Implement SASLPrep: Update comments
1 parent ff6cf72 commit e56458d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/MongoDB.Driver/MongoClient.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public MongoClient()
6868
/// <summary>
6969
/// Initializes a new instance of the MongoClient class.
7070
/// In .NET Standard, authenticating via SCRAM-SHA-256 may not work with non-ASCII passwords because SaslPrep is
71-
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.6.
71+
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.5.
7272
/// Normalizing the password into Unicode Normalization Form KC beforehand MAY help.
7373
/// SCRAM-SHA-1 is the recommended alternative for now.
7474
/// </summary>
@@ -83,7 +83,7 @@ public MongoClient(MongoClientSettings settings)
8383
/// <summary>
8484
/// Initializes a new instance of the MongoClient class.
8585
/// In .NET Standard, authenticating via SCRAM-SHA-256 may not work with non-ASCII passwords because SaslPrep is
86-
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.6.
86+
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.5.
8787
/// Normalizing the password into Unicode Normalization Form KC beforehand MAY help.
8888
/// SCRAM-SHA-1 is the recommended alternative for now.
8989
/// </summary>
@@ -96,7 +96,7 @@ public MongoClient(MongoUrl url)
9696
/// <summary>
9797
/// Initializes a new instance of the MongoClient class.
9898
/// In .NET Standard, authenticating via SCRAM-SHA-256 may not work with non-ASCII passwords because SaslPrep is
99-
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.6.
99+
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.5.
100100
/// Normalizing the password into Unicode Normalization Form KC beforehand MAY help.
101101
/// SCRAM-SHA-1 is the recommended alternative for now.
102102
/// </summary>

src/MongoDB.Driver/MongoCredential.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class MongoCredential : IEquatable<MongoCredential>
4343
/// </summary>
4444
/// <param name="mechanism">Mechanism to authenticate with.
4545
/// In .NET Standard, authenticating via SCRAM-SHA-256 may not work with non-ASCII passwords because SaslPrep is
46-
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.6.
46+
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.5.
4747
/// Normalizing the password into Unicode Normalization Form KC beforehand MAY help.
4848
/// SCRAM-SHA-1 is the recommended alternative for now.</param>
4949
/// <param name="identity">The identity.</param>
@@ -85,7 +85,7 @@ public MongoIdentity Identity
8585
/// <summary>
8686
/// Gets the mechanism to authenticate with.
8787
/// In .NET Standard, authenticating via SCRAM-SHA-256 may not work with non-ASCII passwords because SaslPrep is
88-
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.6.
88+
/// not fully implemented due to the lack of a string normalization function in .NET Standard 1.5.
8989
/// Normalizing the password into Unicode Normalization Form KC beforehand MAY help.
9090
/// SCRAM-SHA-1 is the recommended alternative for now.
9191
/// </summary>

0 commit comments

Comments
 (0)