|
-
May 25th, 2000, 11:10 PM
#1
Thread Starter
New Member
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...
-
May 26th, 2000, 01:16 AM
#2
transcendental analytic
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.
-
May 26th, 2000, 01:33 AM
#3
Thread Starter
New Member
Thank you kindly sir, I shall look into this ASAP.
-
May 26th, 2000, 03:18 AM
#4
Yes, I have an example of RC4 Encryption. I will look for it and post it up soon.
-
May 26th, 2000, 05:04 AM
#5
Addicted Member
VB World also has a new article on the subject:
http://www.vb-world.net/files/tip476.html
-
May 26th, 2000, 05:11 AM
#6
-
May 26th, 2000, 05:17 AM
#7
transcendental analytic
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.
-
May 26th, 2000, 05:18 AM
#8
-
May 26th, 2000, 05:45 AM
#9
transcendental analytic
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.
-
May 27th, 2000, 12:36 AM
#10
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.
-
May 27th, 2000, 09:41 AM
#11
PowerPoster
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|