Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[TUT]Encrypt Your Infos[TUT]
#1
[TUT]Encrypt Your Infos[TUT]

In this tutorial i will explain how to add an encryption to your info ( i saw a newbie asking fo that )

So let's take my Logger :
[Image: 20110206074935.jpg]

we will add an encryption for the " username " & " the password" & " smtp" & " port"

we add base 64 :
[Image: base64.jpg]

for username = textbox1
for password = textbox2
for smtp = textbox3
for port = textbox4

to encrypt :
Code:
TextBox1.Text = EncryptMe(Me.TextBox1.Text)
            TextBox2.Text = EncryptMe(Me.TextBox2.Text)
            TextBox3.Text = EncryptMe(Me.TextBox3.Text)
            TextBox4.Text = EncryptMe(Me.TextBox4.Text)

To decrypt :
Code:
TextBox1.Text = DecryptMe(TextBox1.Text)
            TextBox2.Text = DecryptMe(TextBox2.Text)
            TextBox3.Text = DecryptMe(TextBox3.Text)
            TextBox4.Text = DecryptMe(Me.TextBox4.Text)
Reply
#2
Works great for me but you should give credits.
Reply
#3
You can use an obfuscator instead. This way, you don't have to change your code, and it's much more effective.
My software company: Porosis Software
Games: Terrantula
Apps: Mathanasis, ColorGrabber
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to hook the keyboard. [VB.NET] [TuT] Vorfin 92 55,490 09-23-2019, 11:55 AM
Last Post: Jamimartin
  Encrypt String using x509Certificate private Key wih RSA jeffstan 0 2,327 01-26-2014, 04:18 PM
Last Post: jeffstan
  [TUT]Creating Advanced Web Browser with Awesome Theme Imaking31 0 1,320 05-25-2013, 03:12 AM
Last Post: Imaking31
  VB.NET Port Scanner [TUT] Fragma 30 12,865 11-27-2012, 11:26 PM
Last Post: ƃu∀ ıʞƃu∀
  [TUT] MD5 Encrypter & Finder [VB.NET] Fragma 12 7,055 11-25-2012, 10:36 PM
Last Post: ƃu∀ ıʞƃu∀

Forum Jump:


Users browsing this thread: 1 Guest(s)