Results 1 to 3 of 3

Thread: XOR Crypt! C++

  1. #1
    11moon11
    11moon11 is offline
    Guest
    Join Date
    2013 Jul
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0

    Post XOR Crypt! C++

    Function, which made your text crypted:
    Code:
    //---------------------------------------------------------------------------
    AnsiString XOR_Crypt(AnsiString in, AnsiString pass)
    {
            AnsiString out;
            for (int x=1;x<in.Length()+1;x++)
            {
                    out += (char)(in[x] ^ pass[x%pass.Length()+1]);
            }
            return out;
    }
    And how to crypt your text:
    Code:
    ShowMessage(XOR_Crypt("pass", "text"));
    PROFIT!

  2. The Following User Says Thank You to 11moon11 For This Useful Post:


  3. #2
    LonelyVatz
    LonelyVatz is offline
    Guest
    Join Date
    2013 Jun
    Posts
    3
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    you also can do xor crypt to your function.
    to make your project undetected.

  4. #3
    WitchTheWicked
    WitchTheWicked is offline
    Guest
    Join Date
    2014 Feb
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    AnsiString what is ansistring

Similar Threads

  1. GameGuard INI Crypt Tool
    By Dwar in forum Anti-Cheat Systems
    Replies: 8
    Last Post: 2015-05-07, 10:19 AM
  2. Blade and Soul crypt system request
    By vitlav in forum Research Requests
    Replies: 1
    Last Post: 2013-11-18, 02:35 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •