Skip to content

Commit

Permalink
Fix XML comments
Browse files Browse the repository at this point in the history
  • Loading branch information
henkmollema committed Feb 10, 2018
1 parent a383796 commit e8c7686
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/JsonWebTokens/JwtHashAlgorithm.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Jwt
{
/// <summary>
/// Represents the hashing algorithm being used used.
/// Specifies the hashing algorithm being used used.
/// </summary>
public enum JwtHashAlgorithm
{
Expand All @@ -11,13 +11,13 @@ public enum JwtHashAlgorithm
HS256,

/// <summary>
/// Hash-based Message Authentication Code (HMAC) using SHA256.
/// Hash-based Message Authentication Code (HMAC) using SHA384.
/// </summary>
HS384,

/// <summary>
/// Hash-based Message Authentication Code (HMAC) using SHA256.
/// Hash-based Message Authentication Code (HMAC) using SHA512.
/// </summary>
HS512
}
}
}

0 comments on commit e8c7686

Please sign in to comment.