Initial Setup

If you plan on using the premade form, you do not need to do anything on this page. Go straight to the Premade Form page to learn how to set it up!

Before setting up TrinitySeal, please first create your program and download the latest files which can be found here: https://trinityseal.me/download/TrinitySeal.zip

You must add the SealCheck.cs/vb file to your program!

You will need to have your program token, the latest TrinitySeal files and variable key at hand

Initial Setup (Your own form/console):

using TrinitySeal;

public Form1() {
InitializeComponent();
SealCheck.HashChecks(); //Checks the integrity of the TrinitySeal and Newtonsoft DLL

if (SealCheck.isValidDLL) {
TrinitySeal.Seal.Secret = "Your program secret"; //Sets your program secret throughout the program
TrinitySeal.Seal.Initialize("Your program version e.g. 1.0"); //Carries out auto-update and grabs program variables
}

}

On the form that shows after login:

using TrinitySeal;

public Form2() {
InitializeComponent();
SealCheck.HashChecks();

if(TrinitySeal.isValidDLL) {

if (!TrinitySeal.ProgramVariables.Freemode) { //Checking that a login was actually required
TrinitySeal.Security.ChallengeCheck(); //Checks if the user has logged in, passed the initialize method and hasn't triggered any security alarms
}

}

}

Last updated