VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Encryption using the XOR operator.

by James Cox (1 Submission)
Category: Encryption
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Thu 15th March 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Encryption using the XOR operator.

Rate Encryption using the XOR operator.



    Dim Char As Integer
    
    For Char = 1 To Len(EncString)
        Mid(EncString, Char, 1) = Chr(Asc(Mid(EncString, Char, 1)) Xor XORVal)
        
    Next Char
    
End Sub

Download this snippet    Add to My Saved Code

Encryption using the XOR operator. Comments

No comments have been posted about Encryption using the XOR operator.. Why not be the first to post a comment about Encryption using the XOR operator..

Post your comment

Subject:
Message:
0/1000 characters