LibreAuth

Perl SDK

Perl 5.30+ · LibreAuth native client · Protocol v2 available (Enterprise)

Perl Perl 5.30+
POST https://libreauth.nutexe.dev/api/1.3/

Setup Guide

LibreAuthV2 · OpsBridge::process_check_ops after check · ops_executor + hardening · full Windows ops parity · CryptX AEAD · ForceAdopt

  1. Credentials: name + ownerid (10 characters)
  2. API URL: https://libreauth.nutexe.dev/api/1.3/
  3. Source: perl/libreauth.pl
  4. Ed25519 key: from initResponse Signing
  5. Test: Live API · Init docs

Install / Dependencies

Terminal
# v2: libreauth_v2.pl · inject verify_sig → /api/v2/

Code Example

Perl
my $app = LibreAuthV2->new(name => 'AppName', owner_id => 'OWNER_ID_10', url => 'https://host/api/v2/');
$app->init;
$app->login('user', 'pass', 'HWID');

Protocol v2 (Enterprise)

INFO
Requires Enterprise plan. Endpoint https://libreauth.nutexe.dev/api/v2/. Guide: API Protocol v2.

Source: perl/libreauth_v2.pl

Perl · v2
my $app = LibreAuthV2->new(name => 'AppName', owner_id => 'OWNER_ID_10', url => 'https://host/api/v2/');
$app->init;
$app->login('user', 'pass', 'HWID');