These are all class modules.
- Encryption Algorithms
RC4 - Download
Blowfish - Download
Gost - Download
TEA - Download
Twofish - Download
DES - Download
Skipjack - Download
Rijndael - Download
Serpent - Download
- Hash Algorithms
MD5 - [url=http://script-o-matic.net/john/Encryption/Hash Algorithms/clsMD5.cls]Download[/url]
SHA - [url=http://script-o-matic.net/john/Encryption/Hash Algorithms/clsSHA.cls]Download[/url]
- Compression
Huffman - Download
Example code on how to work them (using RC4, this will be the exact same as any other algorithm):
CODE
Public rc4 As New clsRC4
Private Sub encrypt_Click ()
Dim rc4 As New clsRC4
Dim text As String
text = clsRC4.EncryptString("encrypt this", "my key", False)
encryptedtext.text = text
End Sub
Hopefully you can edit that code up and work, and yes I did this post if you think I copied and pasted.
Good luck, and hopefully it helps you!

