Skip to content

Commit

Permalink
Added missing XML comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
yallie committed Mar 28, 2022
1 parent 4905bda commit 79ef8d6
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/srp/SrpRevision.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
namespace SecureRemotePassword
{
/// <summary>
/// SRP protocol revisions.
/// </summary>
public enum SrpRevision
{
/// <summary>
/// SRP-3 protocol.
/// </summary>
Three = 1,

/// <summary>
/// SRP-6 protocol.
/// </summary>
Six = 2,
SixA = 3

/// <summary>
/// SRP-6a protocol, the default.
/// </summary>
SixA = 3,
}
}

0 comments on commit 79ef8d6

Please sign in to comment.