README.md

December 4, 2022 ยท View on GitHub

BMTEncode

Description

Encode/Decode a string. (BMTEncode refined version). If f.ex. enter AA the 2

output chars wont be the same.

More Info

Textstring = text to Encode/Decode

value = 0 or 1 for either Encode/Decode

String

Submitted On
ByY'll never know
LevelUnknown
User Rating5.0 (10 globes from 2 users)
CompatibilityVB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0
CategoryString Manipulation
WorldVisual Basic
Archive File

Source Code

'* Sorry for stealing code, but I couldn't help it when I saw the garbage
'* routine called BMTEncrypt.
Function BTMEncrypt(text, types)
 For god = 1 To Len(text)
   If types = 0 Then
     Current$ = Asc(Mid(text, god, 1)) - god
   Else
     Current$ = Asc(Mid(text, god, 1)) + god
   End If
   Process$ = Process$ & Chr(Current$)
 Next god
 BTMEncrypt = Process$
End Function