Login Register






bencode -- Simple hashing/encrypting module filter_list
Author
Message
bencode -- Simple hashing/encrypting module #1
BenCode
Simple hashing/encrypting module

Usage
--> Add Reference to bencode.dll
--> Dim b As New bencode.bencode

Documentation
--> b.SHA1("Input String") returns "Hashed result"
--> b.SHA256("Input String") returns "Hashed result"
--> b.SHA384("Input String") returns "Hashed result"
--> b.SHA512("Input String") returns "Hashed result"
--> b.RIPEMD160("Input String") returns "Hashed result"
--> b.MD5("Input String") returns "Hashed result"
--> b.RC2("Input String") returns {"Encrypted Result", "Generated Key", "Init Vector"}
--> b.AES("Input String") returns {"Encrypted Result", "Generated Key", "Init Vector"}
--> b.DES("Input String") returns {"Encrypted Result", "Generated Key", "Init Vector"}
--> b.TDES("Input String") returns {"Encrypted Result", "Generated Key", "Init Vector"}
--> b.RSA("Input String") returns "Encrypted Result"


Reply

RE: bencode -- Simple hashing/encrypting module #2
Nice share. Is this your own code?

Reply

RE: bencode -- Simple hashing/encrypting module #3
Yep, I just coded it yesterday and figured I might as well share it.

Reply

RE: bencode -- Simple hashing/encrypting module #4
Awesome release man, I could get a fair bit of use out of this.

Reply

RE: bencode -- Simple hashing/encrypting module #5
Thank man, add swordfish to the mix too.
Ain't no application without SwordFish.
[Image: tumblr_m4vms28lYu1qj3ir1.gif]

Reply

RE: bencode -- Simple hashing/encrypting module #6
Really nice for our apps, thanks a lot!

Reply