C# SDK
.NET / WinForms / Console · LibreAuth native client
C#
.NET / WinForms / Console
Setup Guide
Copy LibreAuth.cs · set Name, OwnerId, Version, Url
- Panel → Manage Applications → copy name + ownerid
- API URL:
https://libreauth.nutexe.dev/api/1.3/ - Source:
csharp/LibreAuth.cs - Ed25519 key: /health · Response Signing
- Test: Live API · Init docs
Install / Dependencies
Terminal
dotnet add package Newtonsoft.Json
// Copy sdk/csharp/LibreAuth.cs
Code Example
C#
using LibreAuth.Sdk;
var app = new LibreAuth("AppName", "OWNER_ID_10", "1.0", "https://libreauth.nutexe.dev/api/1.3/");
await app.InitAsync();
var info = await app.LoginAsync("user", "pass", "HWID");