Hey dude, great tool, i can decompress just fine, but when i try to compress the file i get an error saying -
"An error has occurred: the specified cryptographic algorithm is not supported on this platform"
any ideas?
*Edit* My friend tested it and it worked fine on Vista, I'm on Windows XP 32 bit. No idea why it won't work on my pc =/
Last edited by x Revenge Inc x; 08-09-2012 at 09:37 PM.
Flying Is Simple, You Just Throw Yourself At The Ground, Then Miss.
It seems only Windows XP SP3 and above supports the algorithm needed
Prior to Windows XP Service Pack 3, there was no SHA2 functionality within Windows XP. With the release of Service Pack 3 some limited functionality was added to the crypto module rsaenh.dll. This includes the following SHA hashes: SHA-256, SHA-384, SHA-512. SHA-224 was not included.
There's an open source library written by BouncyCastle that has many implementations of algorithms, compressions, streams and other cryptographic classes that are not reliant on the core services of the .NET libraries - BouncyCastle DLL
Code:Imports Org.BouncyCastle.Crypto.Digests Sub DoSHA256() '32 byte output hash buffer and 100 byte buffer to process Dim Hash(&H20 - 1), Buffer(100 - 1) As Byte For i As Byte = 0 To Buffer.Length - 1 'Fill buffer with junk Buffer(i) = i Next Dim SHA As New Sha256Digest() 'Init SHA2 SHA.BlockUpdate(Buffer, 0, Buffer.Length) 'Process junk buffer SHA.DoFinal(Hash, 0) 'Finalize crypto, copy resulting hash to hash buffer (returns an int aswell, always 0x20) End Sub
Last edited by feudalnate; 08-10-2012 at 12:55 AM.
"If you can get 30 seconds of fun, you can pretty much stretch that out to be an entire game. So you can have all the great graphics, all the different characters,
and lots of different weapons with amazing effects but if you don't nail that 30 seconds, you're not going to have a great game." ~Jamie Griesemer (Halo 2 Design Lead)
Thanks for the help guys, been meaning to upgrade to windows 7 but never got around to it lol, cheers again.
Flying Is Simple, You Just Throw Yourself At The Ground, Then Miss.
Thanks For This!!
Can't download this. Site say's I "Don't have permission to access this page" when I click the download button. Why don't it work for me? Fist time having a problem with this.
Edit
Spammed the download button, fixed it's self. Thanks for this.