VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Algorithum Encryption and Decryption

Jeffrey C. Tatum  (5 Submissions)   Encryption   Visual Basic 3.0   Intermediate   Wed 3rd February 2021

This code will take text, and encrypt it in Algorithum Encryption. What it does is randomly create 4 keys, each one 1 char long. No password needed to encrypt the text, it creates its own and stores it within the encrypted text. Virtualy impossible to crack because the output encryption is rarely the same. For example, a string that says "test" will be 8 charachters long, and almost never the same. Or a string that says "testing" will be 11 charachters long. The key to encrypt and decrypt is stored at the beginning and the end of the output making it almost impossible to crack.

Assumes
To see how this code works, create 3 text box's. Text1, Text2, and Text3. In Text1_Change, put: text2 = TEncrypt(text1) In Text2_Change, put: text3 = TDecrypt(text2) Put nothing in Text3_Change. What this will show you is the text you type in Text1, will get encrypted into Text2. It will then Decrypt itself and show you in Text3.

Rate Algorithum Encryption and Decryption (20(20 Vote))
Algorithum Encryption and Decryption.bas

Algorithum Encryption and Decryption Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters