OtpCore 0.9.0-dev-7

This is a prerelease version of OtpCore.
There is a newer version of this package available.
See the version list below for details.
dotnet add package OtpCore --version 0.9.0-dev-7
NuGet\Install-Package OtpCore -Version 0.9.0-dev-7
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="OtpCore" Version="0.9.0-dev-7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OtpCore --version 0.9.0-dev-7
#r "nuget: OtpCore, 0.9.0-dev-7"
#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 OtpCore as a Cake Addin
#addin nuget:?package=OtpCore&version=0.9.0-dev-7&prerelease

// Install OtpCore as a Cake Tool
#tool nuget:?package=OtpCore&version=0.9.0-dev-7&prerelease

HOTP, TOTP, OTP Auth URI, and Base32 .NET Standard library

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

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
1.2.0-dev-67 151 7/5/2023
1.2.0-dev-66 171 1/24/2023
1.2.0-dev-65 160 1/24/2023
1.2.0-dev-64 148 1/24/2023
1.2.0-dev-58 158 1/24/2023
1.1.2 2,196 1/24/2023
1.1.1 334 1/23/2023
1.1.0 344 1/17/2023
1.1.0-dev-54 148 1/23/2023
1.1.0-dev-52 148 1/23/2023
1.1.0-dev-48 173 1/17/2023
1.1.0-dev-46 151 1/17/2023
1.1.0-dev-44 163 1/17/2023
1.1.0-dev-40 161 1/16/2023
1.1.0-dev-32 188 8/18/2022
1.1.0-dev-28 168 8/18/2022
1.1.0-dev-24 162 8/17/2022
1.1.0-dev-22 180 7/30/2022
1.0.3 490 8/18/2022
1.0.2 449 8/17/2022
1.0.1 472 7/30/2022
1.0.1-dev-17 196 7/30/2022
1.0.0 472 7/29/2022
0.9.0-dev-9 177 7/29/2022
0.9.0-dev-8 173 7/29/2022
0.9.0-dev-7 164 7/29/2022
0.9.0-dev-6 181 7/28/2022
0.9.0-dev-14 188 7/29/2022
0.9.0-dev-13 182 7/29/2022
0.9.0-dev-12 180 7/29/2022
0.9.0-dev-11 179 7/29/2022
0.9.0-dev-10 184 7/29/2022

HOTP and TOTP implementation in C# targeting .NET standard 2.0, compliant with RFC 4226 (HOTP) and
     RFC 6238 (TOTP) and verified against supplied test vectors. The interface includes support for
     multiple algorithms (HMAC-SHA1, HMAC-SHA256, HMAC-SHA384, and HMAC-SHA512), code lengths (6 - 10),
     and an adjustable period, or time step, (1 second - 1 hour) for TOTP.

     The reason for creating this library was to fetch multiple HOTP counters or a TOTP time range in
     a single call.

     A parser for OTP Auth URIs is also included that conforms to the documentation found at:
     https://github.com/google/google-authenticator/wiki/Key-Uri-Format.

     This implementation also includes a Base32 encoder and decoder. It is compliant with RFC 4648,
     using the standard alphabet from section 6, and has been tested against the test vectors from
     section 10.