LibreAuth Nut.exe Visit Website

C# SDK

.NET / WinForms / Console · LibreAuth native client

C# .NET / WinForms / Console
POST https://libreauth.nutexe.dev/api/1.3/

Setup Guide

Copy LibreAuth.cs · set Name, OwnerId, Version, Url

  1. Panel → Manage Applications → copy name + ownerid
  2. API URL: https://libreauth.nutexe.dev/api/1.3/
  3. Source: csharp/LibreAuth.cs
  4. Ed25519 key: /health · Response Signing
  5. 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");