https://github.com/krutonium/arbitarycompression
"Compresses" Arbitrary files using MD5 cryptography. In theory, one can fully recover all the data, if they throw enough CPU power at it.
https://github.com/krutonium/arbitarycompression
actually-terrible compression cryptography md5
Last synced: about 1 year ago
JSON representation
"Compresses" Arbitrary files using MD5 cryptography. In theory, one can fully recover all the data, if they throw enough CPU power at it.
- Host: GitHub
- URL: https://github.com/krutonium/arbitarycompression
- Owner: Krutonium
- License: gpl-3.0
- Created: 2019-06-05T03:51:22.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T20:41:19.000Z (over 5 years ago)
- Last Synced: 2025-02-15T20:27:09.253Z (over 1 year ago)
- Topics: actually-terrible, compression, cryptography, md5
- Language: C#
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ArbitaryCompression
"Compresses" Arbitrary files using MD5 cryptography. In theory, one can fully recover all the data, if they throw enough CPU power at it.
I do not recommend using this though, since it's entirely not suitable for anything. I mean it. Yes it will achieve 50% compression ratio, but so will most popular compression algorythms, and without requiring a super computer to "decompress" your data.
This program works on the principal of for ever X bytes of data, it will generate X/2 bytes in the form of MD5 Hashes. Functional, but actually garbage and should not be used.