OtpCore 1.1.0-dev-22
See the version list below for details.
dotnet add package OtpCore --version 1.1.0-dev-22
NuGet\Install-Package OtpCore -Version 1.1.0-dev-22
<PackageReference Include="OtpCore" Version="1.1.0-dev-22" />
paket add OtpCore --version 1.1.0-dev-22
#r "nuget: OtpCore, 1.1.0-dev-22"
// Install OtpCore as a Cake Addin #addin nuget:?package=OtpCore&version=1.1.0-dev-22&prerelease // Install OtpCore as a Cake Tool #tool nuget:?package=OtpCore&version=1.1.0-dev-22&prerelease
HOTP, TOTP, OTP Auth URI, and Base32 .NET Standard library
Product | Versions 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. |
-
.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-78 | 80 | 10/3/2024 |
1.2.0-dev-72 | 75 | 10/3/2024 |
1.2.0-dev-70 | 76 | 10/3/2024 |
1.2.0-dev-67 | 184 | 7/5/2023 |
1.2.0-dev-66 | 196 | 1/24/2023 |
1.2.0-dev-65 | 193 | 1/24/2023 |
1.2.0-dev-64 | 179 | 1/24/2023 |
1.2.0-dev-58 | 184 | 1/24/2023 |
1.1.4 | 164 | 10/3/2024 |
1.1.2 | 2,633 | 1/24/2023 |
1.1.1 | 366 | 1/23/2023 |
1.1.0 | 393 | 1/17/2023 |
1.1.0-dev-54 | 179 | 1/23/2023 |
1.1.0-dev-52 | 177 | 1/23/2023 |
1.1.0-dev-48 | 202 | 1/17/2023 |
1.1.0-dev-46 | 176 | 1/17/2023 |
1.1.0-dev-44 | 185 | 1/17/2023 |
1.1.0-dev-40 | 196 | 1/16/2023 |
1.1.0-dev-32 | 213 | 8/18/2022 |
1.1.0-dev-28 | 195 | 8/18/2022 |
1.1.0-dev-24 | 187 | 8/17/2022 |
1.1.0-dev-22 | 205 | 7/30/2022 |
1.0.3 | 522 | 8/18/2022 |
1.0.2 | 476 | 8/17/2022 |
1.0.1 | 502 | 7/30/2022 |
1.0.1-dev-17 | 222 | 7/30/2022 |
1.0.0 | 509 | 7/29/2022 |
0.9.0-dev-9 | 201 | 7/29/2022 |
0.9.0-dev-8 | 197 | 7/29/2022 |
0.9.0-dev-7 | 187 | 7/29/2022 |
0.9.0-dev-6 | 206 | 7/28/2022 |
0.9.0-dev-14 | 218 | 7/29/2022 |
0.9.0-dev-13 | 208 | 7/29/2022 |
0.9.0-dev-12 | 205 | 7/29/2022 |
0.9.0-dev-11 | 203 | 7/29/2022 |
0.9.0-dev-10 | 209 | 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.