Heres some more...this is some pretty cheap symetrical Xor encryption. So call the same function with the same key on the cipher and you'll get the text back.
VB Code:
  1. Function Enc(iText As String, Key As String) As String
  2. 'Very Simple Encryption
  3. 'Symetrical, Xor encryption. Simply text xor key. nothing fancy
  4.     Dim StrOut As String
  5.     Dim i As Long
  6.     Dim StrLen As Long
  7.     Dim KeyLen As Long
  8.  
  9.     StrLen = Len(iText)
  10.     KeyLen = Len(Key)
  11.  
  12.     For i = 1 To StrLen
  13.         StrOut = StrOut & Chr(Asc(Mid(iText, i, 1)) Xor Asc(Mid(Key, i Mod KeyLen + 1, 1)))
  14.     Next
  15.     Enc = StrOut
  16. End Function