Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit b55322a

Browse files
authored
Update GravatarImageSourceHandler.android.ios.macos.tizen.uwp.wpf.cs
1 parent aca2829 commit b55322a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/CommunityToolkit/Xamarin.CommunityToolkit/Views/GravatarImageSource/Shared/GravatarImageSourceHandler.android.ios.macos.tizen.uwp.wpf.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,12 @@ static string DefaultGravatarName(DefaultGravatar defaultGravatar)
115115
_ => $"{defaultGravatar}".ToLower(),
116116
};
117117

118-
// While MD5 is deemed to be not secure anymore, it is not used in a security context here/
118+
// While MD5 is deemed to be not secure anymore, it is not used in a security context here.
119119
// This is used by Gravatar to encode the email address to something they can use.
120120
// Also see: https://en.gravatar.com/site/implement/hash/
121-
// As part as Microsofts ongoing efforts to secure the .NET ecosystem, an exception has been requested
122-
// for the usage of this "unsafe" hashing mechanism. More details here (internal link): https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1680417
121+
// As part as Microsofts ongoing efforts to secure the .NET ecosystem, this usage of an insecure hashing mechanism was flagged.
122+
// An exception has been requested for the usage of this "unsafe" hashing mechanism.
123+
// More details here (internal link): https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1680417
123124
static string GetMd5Hash(string str)
124125
{
125126
using var md5 = MD5.Create();

0 commit comments

Comments
 (0)