Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit e79f157

Browse files
LorenzCKWilliamDenniss
authored andcommitted
Fix typo
1 parent a9c06c5 commit e79f157

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

OAuthUniversalApp/OAuthUniversalApp/MainPage.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,12 @@ public static string randomDataBase64url(uint length)
208208
///
209209
/// Returns the SHA256 hash of the input string.
210210
///
211-
/// inputStirng">
211+
/// inputString">
212212
///
213-
public static IBuffer sha256(string inputStirng)
213+
public static IBuffer sha256(string inputString)
214214
{
215215
HashAlgorithmProvider sha = HashAlgorithmProvider.OpenAlgorithm(HashAlgorithmNames.Sha256);
216-
IBuffer buff = CryptographicBuffer.ConvertStringToBinary(inputStirng, BinaryStringEncoding.Utf8);
216+
IBuffer buff = CryptographicBuffer.ConvertStringToBinary(inputString, BinaryStringEncoding.Utf8);
217217
return sha.HashData(buff);
218218
}
219219

0 commit comments

Comments
 (0)