For archivists, researchers, and hobbyists
Simple XOR encryption or Caesar cipher logic applied to strings. visual basic 60 projects with source code exclusive
' Loop through every character in the input For i = 1 To Len(txtInput.Text) Char = Mid(txtInput.Text, i, 1) ' Cycle through the key characters KeyChar = Mid(txtKey.Text, (i Mod Len(txtKey.Text)) + 1, 1) (i Mod Len(txtKey.Text)) + 1