Results 1 to 11 of 11

Thread: Encryption in VB

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2000
    Posts
    9

    Question

    Does anyone know where I can find information regarding the implementation of good encryption in VB? I need to secure very sensitive information.

    Information on a RC4 implementation would be ideal, or something to that degree...

    Daryl Jones
    Software Developer
    [email protected]

  2. #2
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    There is an algoritmencryption and a keyencryption on my homepage, the keyencryption should be secure enough for you
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  3. #3

    Thread Starter
    New Member
    Join Date
    Apr 2000
    Posts
    9
    Thank you kindly sir, I shall look into this ASAP.
    Daryl Jones
    Software Developer
    [email protected]

  4. #4
    Guest
    Yes, I have an example of RC4 Encryption. I will look for it and post it up soon.

  5. #5
    Addicted Member
    Join Date
    Jan 2000
    Location
    Fresno, California, USA
    Posts
    195
    VB World also has a new article on the subject:

    http://www.vb-world.net/files/tip476.html

  6. #6
    Guest
    Yes, but it isn't RC4.

  7. #7
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    It's slow unsecure and have bugs...
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  8. #8
    Guest

  9. #9
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    I've tested it out, it's much slower than mine.
    My code is not copyright protected either, use it and you don't even have to credit me (Although i would appreciate that) Keyencryption is more secure the longer your key is, so you can adjust it yourself, (shouldn't drain on performance)
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  10. #10
    Guest
    If you would like some more examples which do not require a license, go to http://www.planet-source-code.com and type in RC4 and press search. It will give you many pages full of free examples.

  11. #11
    PowerPoster Chris's Avatar
    Join Date
    Jan 1999
    Location
    K-PAX
    Posts
    3,238

    Lightbulb CryptEncrypt API

    May be this the good time for you to study the Cryto API function : CryptEncrypt

    You can get more info and example from the following URL

    http://www.allapi.net/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width