Click here to Skip to main content
Licence 
First Posted 28 Jul 2002
Views 124,252
Bookmarked 39 times

Fast Simple Secure Encryption Routine

By | 28 Jul 2002 | Article
A simple secure algorithm that can be used in your programs

Introduction

This Crypt routine uses an algorithm created by Rodney Thayer. This algorithm can use keys of various sizes. With a 40-bit key (5 characters) it can be freely exported from the U.S. The cipher is considered robust with 128 bits of key material but can use up to 2048 bits. It is compatible with RSA’s RC4 algorithm.

void Crypt(TCHAR *inp, DWORD inplen, TCHAR* key = "", DWORD keylen = 0)
{
    //we will consider size of sbox 256 bytes
    //(extra byte are only to prevent any mishep just in case)
    TCHAR Sbox[257], Sbox2[257];
    unsigned long i, j, t, x;

    //this unsecured key is to be used only when there is no input key from user
    static const TCHAR  OurUnSecuredKey[] = "www.systweak.com" ;
    static const int OurKeyLen = _tcslen(OurUnSecuredKey);    
    TCHAR temp , k;
    i = j = k = t =  x = 0;
    temp = 0;

    //always initialize the arrays with zero
    ZeroMemory(Sbox, sizeof(Sbox));
    ZeroMemory(Sbox2, sizeof(Sbox2));

    //initialize sbox i
    for(i = 0; i < 256U; i++)
    {
        Sbox[i] = (TCHAR)i;
    }

    j = 0;
    //whether user has sent any inpur key
    if(keylen)
    {
        //initialize the sbox2 with user key
        for(i = 0; i < 256U ; i++)
        {
            if(j == keylen)
            {
                j = 0;
            }
            Sbox2[i] = key[j++];
        }    
    }
    else
    {
        //initialize the sbox2 with our key
        for(i = 0; i < 256U ; i++)
        {
            if(j == OurKeyLen)
            {
                j = 0;
            }
            Sbox2[i] = OurUnSecuredKey[j++];
        }
    }

    j = 0 ; //Initialize j
    //scramble sbox1 with sbox2
    for(i = 0; i < 256; i++)
    {
        j = (j + (unsigned long) Sbox[i] + (unsigned long) Sbox2[i]) % 256U ;
        temp =  Sbox[i];                    
        Sbox[i] = Sbox[j];
        Sbox[j] =  temp;
    }

    i = j = 0;
    for(x = 0; x < inplen; x++)
    {
        //increment i
        i = (i + 1U) % 256U;
        //increment j
        j = (j + (unsigned long) Sbox[i]) % 256U;

        //Scramble SBox #1 further so encryption routine will
        //will repeat itself at great interval
        temp = Sbox[i];
        Sbox[i] = Sbox[j] ;
        Sbox[j] = temp;

        //Get ready to create pseudo random  byte for encryption key
        t = ((unsigned long) Sbox[i] + (unsigned long) Sbox[j]) %  256U ;

        //get the random byte
        k = Sbox[t];

        //xor with the data and done
        inp[x] = (inp[x] ^ k);
    }    
}

The only moral here is that we are generating a 256 bit key given from the user. To encrypt we always pick a random byte from the key and encrypt the text with that key. If we have a large pattern of repeating text with this algorithm the key repeat interval (distance between n repetitions) will be approximately of 21700 (2 to the 1700th power).

For very good security I recommend using 128 bits (16 characters) of key material. If you want optimal security you could use 2048 bits (256 characters) of key material (but this is usually considered an overkill).

This routine is constructed from a draft taken from Internet Engineering Task Force (IETF) at http://www.ietf.cnri.reston.va.us/home.htm

I have tested the routine on a 27 MB file to test that it produce valid decrypted output from input and get the valid results.

Using this routine it is fairly simple.

//to encrypt a text
TCHAR HelloCrypt[] = "Hello Crypt";

//we do not enter the key so we will be using default key provide by the crypt 
//routine
Crypt(HelloCrypt, _tcslen(HelloCrypt));

//now to decrypt
Crypt(HelloCrypt, _tcslen(HelloCrypt));

////////////////////////////////////////////////////////////////////////////////
//if we have to supply a key we have to use crypt as follows
TCHAR Data[] = "abcdefghijklmnopqrstuvwxyz"
TCHAR Key[] = "Strong key";

//Encrypt
Crypt(Data, _tcslen(Data), Key, _tcslen(Data));

//Decrypt
Crypt(Data, _tcslen(Data), Key, _tcslen(Data));
/////////////////////////////////////////////////////////////////////////////

//thats all

Please visit My Web Site for more tutorials, tweaks, reference.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Shrishail Rana



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionelliptical cryptography encryption and decryption process Pinmemberbaludegala3:05 30 Sep '11  
Generalimplementation of RSA algorithm in c/c++ PinmemberAnuradha Sehgal22:35 11 Mar '07  
hi
 
i need an implementation of RSA algorithm performing encryption/decryption in C/C++. Please send it to my email :anuradha13@gmail.com if anybody can.
thanks a lot
 
Anuradha
Questionit combine symmetric,asymmetric and hash encryption techniquesneed RSA algorithm in java PinmemberMember #369036721:06 12 Jan '07  
GeneralElliptical Curve Cryptography PinmemberVPNampoothiri19:45 19 Mar '06  
GeneralNeed help PinmemberZDurrani22:03 30 Jun '05  
GeneralImplementation of RSA algorithm in C/C++ Pinmembersyedmfaisal20:56 30 Dec '03  
GeneralProblem with code PinmemberAl Newton12:21 27 Nov '02  
GeneralRe: Problem with code PinsussAnonymous18:58 23 Dec '02  
GeneralRe: Problem with code PinsussPeter, The Pumpkin Eater7:33 24 Dec '02  
GeneralRe: Problem with code PinsussFiffi_11:30 27 Feb '04  
GeneralRe: Problem with code PinmemberPeter, The Pumpkin Eater8:44 1 Mar '04  
GeneralRe: Problem with code PinmembershankarR10:18 9 Sep '04  
GeneralRe: Problem with code PinsussAnonymous20:37 8 Oct '04  
GeneralRe: Problem with code PinmembershankarR3:18 11 Oct '04  
GeneralRe: Problem with code PinmemberAndy Medi7:55 4 Jun '11  
GeneralSlightly Confused PinsussAnonymous12:21 31 Oct '02  
GeneralRe: Slightly Confused Pinmembercodermallu2:28 27 Mar '03  
Generalhow Pinmembershotgun5:45 14 Sep '02  
Generalsimpler.... PinsussAnonymous19:08 24 Aug '02  
GeneralSmall bug in example code PinsussAnonymous9:45 8 Aug '02  
GeneralRC4 is not a good choice PinmemberCarl Berg4:52 30 Jul '02  
GeneralRe: RC4 is not a good choice PinmemberSwinefeaster13:13 5 Aug '02  
GeneralRe: RC4 is not a good choice PinmemberDaniel Madden21:27 5 Aug '02  
GeneralRe: RC4 is not a good choice PinmemberCarl Berg1:15 6 Aug '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 29 Jul 2002
Article Copyright 2002 by Shrishail Rana
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid