VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

encryptAll

Bryan Hurley  (1 Submission)   Encryption   Visual Basic 3.0   Unknown Difficulty   Wed 3rd February 2021

This simple encryption Function uses Xor encryption and itterative encoding to more securely encrypt a text string. Although the code is not unbreakable, it cannot be broken with a simple key. Itterative encoding ensures that code-cracking techniques, like character frequency study, will not work. It's as easy as could be. Function can be easily modified to encode more than strings.

Inputs
data As String, seed As Long Integer

Assumes
Module is set to Option Base 1. This is to simplify the code. If you are adding this to a pre-existing module, make sure that Base Option 1 will not adversely affect your other functions, or modify the code to work off of Base Option 0.

Returns
Function returns String of encoded/decoded text.

Rate encryptAll (39(39 Vote))
encryptAll.bas

encryptAll Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters