Hi,

You can use simple c++ XOR algorithm to  encrypt the file.
suppose 8 bit password entered by user is 10101010

Encrypt byte :11010010
11010010
   XOR         Encrypted Output= 01111000
10101010

Decrypt byte: 01111000
01111000
    XOR         Decrypted Output= 11010010
10101010 
Done

Rishabh Sharma
Anantya R&D

On Tuesday, July 17, 2012 6:38:24 PM UTC+5:30, TeknoCepni wrote:
>
> Hi,
>
> I want to encrypt the file then one software decipher this file and read 
> it.
> How can I do it ?
>
> Programming language : C++
> Ofcourse in Linux.
>
>
> Huseyin Caliskan
>
>
>

-- 
Mailing list guidelines and other related articles: http://lug-iitd.org/Footer

Reply via email to