VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



A Simple encryption function with Password

by Eskimoman (2 Submissions)
Category: Encryption
Compatability: Visual Basic 3.0
Difficulty: Intermediate
Date Added: Wed 3rd February 2021
Rating: (7 Votes)

A simple encryption function with Password. The slightest change with the password will effect the text so that it is unreadable. This function also encrypts and decrypts depending on if you set EnDeCrypt Boolean to True or False.
I am sure you could crack a message from this code after a while but i think it is stronger than other simple cryption codes you will find on vbcoders.com.
Sorry that I ain't REMed it but it is quite simple so you should understand it. I hope you like.

Inputs
Text for encryption, Password and either true or false for encrypt or decrypt.
Assumes
All you need to do is paste the code into a project and create a Command button. I useally put the function into a module.
Code Returns
The En/Decrypted text.
Side Effects
None I know off

Rate A Simple encryption function with Password

Private Sub Command1_Click()
Dim Text As String, Password As String
Text = "Hello"
Password = "Pass"
Print Text
Text = Crypt(Text, Password, True)
Print Text
Text = Crypt(Text, Password, False)
Print Text
End Sub
Public Function Crypt(Source As String, strPassword As String, EnDeCrypt As Boolean) As String
'EnDeCrypt True = Encrypt
'EnDeCrypt False = Decrypt
Dim intPassword As Long
Dim intCrypt As Long
For x = 1 To Len(strPassword)
 intPassword = intPassword + Asc(Mid$(strPassword, x, 1))
Next x
For x = 1 To Len(Source)
If EnDeCrypt = True Then
 intCrypt = Asc(Mid$(Source, x, 1)) + intPassword + x
 
 Do Until intCrypt <= 255
 intCrypt = intCrypt - 255
 Loop
Else
 intCrypt = Asc(Mid$(Source, x, 1)) - intPassword - x
 
 Do Until intCrypt > 0
 intCrypt = intCrypt + 255
 Loop
End If
Crypt = Crypt & Chr(intCrypt)
Next x
End Function

Download this snippet    Add to My Saved Code

A Simple encryption function with Password Comments

No comments have been posted about A Simple encryption function with Password. Why not be the first to post a comment about A Simple encryption function with Password.

Post your comment

Subject:
Message:
0/1000 characters