Skip to content

Commit 23e3db0

Browse files
committed
* Negative discrepancy is allowed and handled correctly
* Exclude SHFB output in gitignore * More documentation
1 parent b305674 commit 23e3db0

8 files changed

+229
-38
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,6 @@ FakesAssemblies/
194194

195195
# Visual Studio 6 workspace options file
196196
*.opt
197+
198+
# Sandcastle Helpfilebuilder output
199+
*.chm

TwoFactorAuth.Net.Tests/TwoFactorAuthTests.cs

+7
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@ public void VerifyCodeWorksCorrectly()
103103
Assert.IsTrue(target.VerifyCode("VMR466AB62ZBOKHE", "543160", 2, 1426847205 - 65)); // Test discrepancy
104104
}
105105

106+
[TestMethod]
107+
public void VerifyCodeAllowsNegativeDiscrepancy()
108+
{
109+
var target = new TwoFactorAuth(null, 6, 30, Algorithm.SHA1);
110+
Assert.IsTrue(target.VerifyCode("VMR466AB62ZBOKHE", "543160", -2, 1426847205 - 65)); // Test negative discrepancy
111+
}
112+
106113

107114
[TestMethod]
108115
public void VerifyTotpUriIsCorrect()

TwoFactorAuth.Net/Providers/Qr/BaseHttpQrCodeProvider.cs

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ public abstract class BaseHttpQrCodeProvider
5757
/// </summary>
5858
/// <param name="baseUri">The base Uri for the QR code provider.</param>
5959
/// <param name="sslPolicy">The <see cref="SslPolicy"/> to be used by the QR code provider.</param>
60+
/// <exception cref="ArgumentNullException">Thrown when <paramref name="baseUri"/> is null.</exception>
61+
/// <exception cref="ArgumentOutOfRangeException">Thrown when an invalid <see cref="SslPolicy"/> is specified.</exception>
6062
protected BaseHttpQrCodeProvider(Uri baseUri, SslPolicy sslPolicy)
6163
{
6264
if (baseUri == null)

TwoFactorAuth.Net/Providers/Qr/GoogleQrCodeProvider.cs

+3
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ public GoogleQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, int margi
6464
/// <param name="errorCorrectionLevel">The <see cref="ErrorCorrectionLevel"/> to use when generating QR codes.</param>
6565
/// <param name="marginRows">The width of the white border around the data portion of the code.</param>
6666
/// <param name="sslPolicy">The <see cref="SslPolicy"/> to use when generating QR codes.</param>
67+
/// <exception cref="ArgumentOutOfRangeException">
68+
/// Thrown when an invalid <see cref="ErrorCorrectionLevel"/> is specified or marginRows is less than 0.
69+
/// </exception>
6770
public GoogleQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, int marginRows, SslPolicy sslPolicy)
6871
: base(baseuri, sslPolicy)
6972
{

TwoFactorAuth.Net/Providers/Qr/QRicketQrCodeProvider.cs

+6
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ public QRicketQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, Color ba
119119
/// <param name="foregroundColor">The foreground color to be used for the QR code.</param>
120120
/// <param name="imageFormat">The <see cref="QRicketImageFormat"/> of the QR code.</param>
121121
/// <param name="sslPolicy">The <see cref="SslPolicy"/> to use when generating QR codes.</param>
122+
/// <exception cref="ArgumentOutOfRangeException">
123+
/// Thrown when an invalid <see cref="ErrorCorrectionLevel"/> or <see cref="QRicketImageFormat"/> is specified.
124+
/// </exception>
122125
public QRicketQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, Color backgroundColor, Color foregroundColor, QRicketImageFormat imageFormat, SslPolicy sslPolicy)
123126
: base(baseuri, sslPolicy)
124127
{
@@ -139,6 +142,9 @@ public QRicketQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, Color ba
139142
/// </summary>
140143
/// <returns>Returns the MIME type of the image.</returns>
141144
/// <seealso cref="IQrCodeProvider"/>
145+
/// <exception cref="InvalidOperationException">
146+
/// Thrown when an unknown <see cref="QRicketImageFormat"/> is used.
147+
/// </exception>
142148
public string GetMimeType()
143149
{
144150
switch (this.ImageFormat)

TwoFactorAuth.Net/Providers/Qr/QrServerQrCodeProvider.cs

+8
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,11 @@ public QrServerQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, int mar
190190
/// <param name="foregroundColor">The foreground color to be used for the QR code.</param>
191191
/// <param name="imageFormat">The <see cref="QrServerImageFormat"/> of the QR code.</param>
192192
/// <param name="sslPolicy">The <see cref="SslPolicy"/> to use when generating QR codes.</param>
193+
/// <exception cref="ArgumentOutOfRangeException">
194+
/// Thrown when an invalid <see cref="ErrorCorrectionLevel"/> or <see cref="QrServerImageFormat"/> is specified,
195+
/// <paramref name="margin"/> is less than 0 or more than 50 or <paramref name="quietZone"/> is less than 0 or
196+
/// more than 100.
197+
/// </exception>
193198
public QrServerQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, int margin, int quietZone, Color backgroundColor, Color foregroundColor, QrServerImageFormat imageFormat, SslPolicy sslPolicy)
194199
: base(baseuri, sslPolicy)
195200
{
@@ -219,6 +224,9 @@ public QrServerQrCodeProvider(ErrorCorrectionLevel errorCorrectionLevel, int mar
219224
/// </summary>
220225
/// <returns>Returns the MIME type of the image.</returns>
221226
/// <seealso cref="IQrCodeProvider"/>
227+
/// <exception cref="InvalidOperationException">
228+
/// Thrown when an unknown <see cref="QrServerImageFormat"/> is used.
229+
/// </exception>
222230
public string GetMimeType()
223231
{
224232
switch (this.ImageFormat)

TwoFactorAuth.Net/Providers/Rng/HashRngProvider.cs

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public HashRngProvider()
2626
/// Initializes a new instance of the <see cref="HashRngProvider"/> with a specified <see cref="HashAlgorithm"/>.
2727
/// </summary>
2828
/// <param name="algorithm">The <see cref="HashAlgorithm"/> to use when generating random number sequences.</param>
29+
/// <exception cref="ArgumentNullException">Thrown when <paramref name="algorithm"/> is null.</exception>
2930
public HashRngProvider(HashAlgorithm algorithm)
3031
{
3132
if (algorithm == null)

0 commit comments

Comments
 (0)