DotNetBrightener.TimeBasedOtp 2024.0.12.11720

dotnet add package DotNetBrightener.TimeBasedOtp --version 2024.0.12.11720
NuGet\Install-Package DotNetBrightener.TimeBasedOtp -Version 2024.0.12.11720
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotNetBrightener.TimeBasedOtp" Version="2024.0.12.11720" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetBrightener.TimeBasedOtp --version 2024.0.12.11720
#r "nuget: DotNetBrightener.TimeBasedOtp, 2024.0.12.11720"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DotNetBrightener.TimeBasedOtp as a Cake Addin
#addin nuget:?package=DotNetBrightener.TimeBasedOtp&version=2024.0.12.11720

// Install DotNetBrightener.TimeBasedOtp as a Cake Tool
#tool nuget:?package=DotNetBrightener.TimeBasedOtp&version=2024.0.12.11720

Time Based OTP Library

© 2022 DotNet Brightener.

Installation

Run this in command line:

dotnet add package DotNetBrightener.TimeBasedOtp

Or add the following to .csproj file

<PackageReference Include="DotNetBrightener.TimeBasedOtp" Version="2022.10.0" />

You should check the latest version from Nuget Site

Usage

Register service

serviceCollection.AddOtpProvider();

In your service / controller:

// inject the service
IOTPProvider otpProvider; 

// generate a secret
var secret = "<some random string>";

// define the length of the password to generate
var passwordLength = 6;

// indicates whether the secret's spaces matter or not.
var ignoreSpaces = false; // false: Spaces matter. true: Spaces don't matter

var otp = otpProvider.GetPassword(secret, passwordLength, ignoreSpaces);

// the adjacent intervals to check for the OTP. The greater this value is, the higher risk of being hijacked.
var checkAdjacentIntervals = 2;

var isOtpValid = otpProvider.ValidateOTP(otp, secret, ignoreSpaces, checkAdjacentIntervals;

Note

The secret should be stored securely within your application.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.0.12.11720 44 4/26/2024
2024.0.12.11719 38 4/26/2024
2024.0.12.11621 50 4/25/2024
2024.0.12.11523 68 4/24/2024
2024.0.12.11522 71 4/24/2024
2024.0.12.11417 90 4/23/2024
2024.0.12.11400 92 4/22/2024
2024.0.12.11316 82 4/22/2024
2024.0.11.10220 76 4/11/2024
2024.0.11.10120 72 4/10/2024
2024.0.11.10119 65 4/10/2024
2024.0.11.10115 69 4/10/2024
2024.0.11.9914 112 4/8/2024
2024.0.11.9901 80 4/7/2024
2024.0.11.9823 92 4/7/2024
2024.0.11.9401 90 4/2/2024
2024.0.11.9301 71 4/1/2024
2024.0.11.9206 76 3/31/2024
2024.0.11.9205 73 3/31/2024
2024.0.11.8200 100 3/21/2024
2024.0.11.8122 68 3/21/2024
2024.0.11.8120 87 3/21/2024
2024.0.11.7320 139 3/13/2024
2024.0.11.7316 99 3/13/2024
2024.0.11.7310 86 3/13/2024
2024.0.11 90 3/13/2024
2024.0.10 120 3/3/2024
2024.0.9 79 2/27/2024
2024.0.8 140 2/1/2024
2024.0.7 90 1/26/2024
2024.0.6 88 1/25/2024
2024.0.5 83 1/24/2024
2024.0.4 77 1/24/2024
2024.0.3 88 1/22/2024
2024.0.2 149 1/10/2024
2024.0.1 102 1/9/2024
2024.0.1-alpha-3 85 1/9/2024
2024.0.1-alpha-2 74 1/9/2024
2024.0.1-alpha-1 106 1/3/2024
2024.0.0 148 12/26/2023
2023.0.27 108 12/21/2023
2023.0.26 87 12/21/2023
2023.0.25 110 12/11/2023
2023.0.24 101 12/8/2023
2023.0.23 101 12/6/2023
2023.0.21 104 12/4/2023
2023.0.20 129 11/27/2023
2023.0.19 110 11/20/2023
2023.0.18 127 10/25/2023
2023.0.17 156 10/22/2023
2023.0.16 136 10/16/2023
2023.0.16-alpha-1 72 10/16/2023
2023.0.15 117 10/14/2023
2023.0.14 98 10/14/2023
2023.0.13 99 10/14/2023
2023.0.12 94 10/14/2023
2023.0.11 99 10/10/2023
2023.0.10 100 10/9/2023
2023.0.9 126 8/16/2023
2023.0.8 123 8/15/2023
2023.0.8-alpha-2 188 5/31/2023
2023.0.7 114 5/12/2023
2023.0.6 148 5/10/2023
2023.0.5 111 5/7/2023
2023.0.4 133 4/22/2023
2023.0.3 165 4/19/2023
2023.0.2 167 4/6/2023
2023.0.1 179 3/13/2023
2022.9.0 255 10/15/2022