-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Add existing encodings/ciphers from Ciphey #61
Comments
binary bytes type base 62 quick reference.https://www.codeproject.com/articles/1076295/base-encode |
There's a broken PR for that here :D #137 If you're interested please feel free to try and fix it 🙏🏻 <3 |
ASCII85 and Base85 are the same encoding, just different names. Maybe one of them should be removed from the list to avoid confusion. |
That's false, they're different. ASCII85 refers to Adobe's variation of base85. https://en.wikipedia.org/wiki/Ascii85#Adobe_version
https://docs.python.org/3/library/base64.html base64.a85encode(b, *, foldspaces=False, wrapcol=0, pad=False, adobe=False)
Encode the bytes-like object b using Ascii85 and return the encoded bytes. base64.b85encode(b, pad=False)
Encode the bytes-like object b using base85 (as used in e.g. git-style binary diffs) and return the encoded bytes. https://stackoverflow.com/questions/34969947/what-is-the-difference-between-a85encode-and-b85encode |
Oh, right, I forgot how many implementations of Base85 there are. Perhaps we should specify it's the Adobe implementation of Base85 up there, for extra clarity. |
With ciphers that require a password, like Vigenère Cipher, how is that done? Is the password just brute-forced? |
Yes, a Vigenere cracker needs to be implemented. |
A lot of ciphers require you to know the key with which the message was encoded. We should write a crate for brute-forcing keys, and use that among all the cipher crates. |
For Vigenere and XOR, I found these two algorithms: |
Not sure if it's worth a whole issue or not but eventually instead of guessing/brute forcing the password, I think there should be a flag to provide a known password, then ares could only go over ciphers with passwords using the provided password. |
Regarding the Brainfuck interpreter, how should it handle the instruction for reading input ( |
@gregorni bee-san/Ciphey#353 You can do it similar to this bee-san/Ciphey#470 I presume :) Libraries would be good if they are semi-popular |
This is a list of all the currently supported encodings/ciphers in Ciphey.
We need to make them in Rust for Ares to achieve feature parity.
Encodings
Ciphers
Modern day cryptography
Esoteric languages
Compression Methods
The text was updated successfully, but these errors were encountered: