-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quines #13
Comments
Note that a quine does not necessarily exist for a specific input and CRC function. However, some standardized CRC functions have an unique quine for every input (for other CRC functions, some inputs have multiple valid quines while other inputs have none). CRC functions that have unique quine for any input message include the following:
The listed CRC function names and parameters have been taken from the file check.sh Yes. In principle, we could define a file format that includes a self-referential CRC checksum (that is calculated over the entire file) in its header. This would unironically simplify parsing of such file format. |
Implement a feature to calculate CRC quines. For example:
sagemath proof of concept:
The text was updated successfully, but these errors were encountered: