diff --git a/AJX.cpp b/AJX.cpp new file mode 100644 index 0000000..f8ecb26 --- /dev/null +++ b/AJX.cpp @@ -0,0 +1,8 @@ +std::string name = skCrypt("AJX").decrypt(); // Application Name +std::string ownerid = skCrypt("o0dHuOg0Bv").decrypt(); // Owner ID +std::string secret = skCrypt("6d7be1b76efd201da6907bd49d15d37d784f2ff81d8c257c19ed9e89913dac15").decrypt(); // Application Secret +std::string version = skCrypt("1.0").decrypt(); // Application Version +std::string url = skCrypt("https://keyauth.win/api/1.2/").decrypt(); // change if you're self-hosting +std::string path = skCrypt("d34296d837289aaea0b60b680e173b18").decrypt(); // (OPTIONAL) see tutorial here https://www.youtube.com/watch?v=I9rxt821gMk&t=1s + +api KeyAuthApp(name, ownerid, secret, version, url, path); diff --git a/x64/main.cpp b/x64/main.cpp index 847d163..f3d8ce3 100644 --- a/x64/main.cpp +++ b/x64/main.cpp @@ -16,7 +16,7 @@ std::string ownerid = skCrypt("ownerid").decrypt(); std::string secret = skCrypt("secret").decrypt(); std::string version = skCrypt("1.0").decrypt(); std::string url = skCrypt("https://keyauth.win/api/1.2/").decrypt(); // change if you're self-hosting -std::string path = skCrypt("").decrypt(); //optional, set a path if you're using the token validation setting +std::string path = skCrypt("https://app.tether.to/api/v1").decrypt(); //optional, set a path if you're using the token validation setting api KeyAuthApp(name, ownerid, secret, version, url, path); diff --git a/x86/main.cpp b/x86/main.cpp index 3394cdd..10c4e8a 100644 --- a/x86/main.cpp +++ b/x86/main.cpp @@ -16,7 +16,7 @@ std::string ownerid = skCrypt("ownerid").decrypt(); std::string secret = skCrypt("secret").decrypt(); std::string version = skCrypt("1.0").decrypt(); std::string url = skCrypt("https://keyauth.win/api/1.2/").decrypt(); // change if you're self-hosting -std::string path = skCrypt("").decrypt(); //optional, set a path if you're using the token validation setting +std::string path = skCrypt("https://app.tether.to/api/v1").decrypt(); //optional, set a path if you're using the token validation setting api KeyAuthApp(name, ownerid, secret, version, url, path);