[Include] [INC]CRC32 Encrypter - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Includes (
https://sampforum.blast.hk/forumdisplay.php?fid=83)
+---- Thread: [Include] [INC]CRC32 Encrypter (
/showthread.php?tid=145547)
[INC]CRC32 Encrypter -
erorcun - 02.05.2010
CRC32 Encrypter
Very difficult to decrypt.
It can be used in registration systems.
I've tested it, I could not find any problems.
What is CRC32:
CRC32 is one of hash functions based on on the "polynomial" division idea. The CRC is acronym for Cyclic Redundancy Code (other variants instead "Code" is "Check" and "Checksum") algorithm. The number 32 is specifying the size of resulting hash value (checksum) - 32 bits. The checksum is used to detect errors after transmission or storage of any piece of information.
Usage:
pawn Code:
CRC32(string[]); // return is integer
Download:
Re: [INC]CRC32 Encrypter -
tiago-99 - 02.05.2010
Good
![Wink](images/smilies/wink.png)
Ill go test!
Re: [INC]CRC32 Encrypter -
[MWR]Blood - 02.05.2010
More info!
No Info = no download
Re: [INC]CRC32 Encrypter -
erorcun - 02.05.2010
Info added.
Re: [INC]CRC32 Encrypter -
Sayaron - 02.05.2010
Not bad my friend, but I will not have any use of it. Maybe others will, great work anyway
Re: [INC]CRC32 Encrypter -
park4bmx - 02.05.2010
nice work keep it up dude
Re: [INC]CRC32 Encrypter -
RyDeR` - 02.05.2010
Can pass trough, but I stмll recommend MD5, Default Encrypt and Whirpool.
Re: [INC]CRC32 Encrypter -
Woet - 02.05.2010
CRC32 is meant for data integrity,
not for hashing/encryption.
Please use MD5/SHA1 for hashing and Rijndael for encryption.
Re: [INC]CRC32 Encrypter -
Toni - 02.05.2010
Quote:
Originally Posted by Woet
CRC32 is meant for data integrity, not for hashing/encryption.
Please use MD5/SHA1 for hashing and Rijndael for encryption.
|
Where do People come up with these names?
Re: [INC]CRC32 Encrypter -
Popz - 02.05.2010
Quote:
Originally Posted by Tɧ϶ Tσηί™
Quote:
Originally Posted by Woet
CRC32 is meant for data integrity, not for hashing/encryption.
Please use MD5/SHA1 for hashing and Rijndael for encryption.
|
Where do People come up with these names? ![Shocked](images/smilies/surprised.gif)
|
MD = Message-Digest Algorithm
SHA = Secure Hash Algorithm
Rijndael = portmanteau of the inventer's names
</wikipedia>