You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ciphey has unique optimizations that in edge cases makes it faster than Ares. (although Ares overall is faster due to Rust and multithreading.)
One example is nested base64, Ciphey will "learn" that it's base64 and try it all the way down. Ares doesn't and gets stuck on early levels with unlikely combinations.
Note, this will likely be fixed as a byproduct of switching our search algorithm to A* from BFS in the future.
Example:
ares -t "VmpGb2QxTnJOVWRpTTJocVVtMW9WRmx0TlVOak1WcFhWVmhrVUZWVU1Eaz0=" -r "easy"
5 seconds have passed. 25 remaining
10 seconds have passed. 20 remaining
15 seconds have passed. 15 remaining
20 seconds have passed. 10 remaining
25 seconds have passed. 5 remaining
🥳 Ares has decoded 246 times times.
If you would have used Ciphey, it would have taken you 49 seconds
⛔️ Ares has failed to decode the text.
Ciphey has unique optimizations that in edge cases makes it faster than Ares. (although Ares overall is faster due to Rust and multithreading.)
One example is nested base64, Ciphey will "learn" that it's base64 and try it all the way down. Ares doesn't and gets stuck on early levels with unlikely combinations.
Note, this will likely be fixed as a byproduct of switching our search algorithm to A* from BFS in the future.
Example:
The text was updated successfully, but these errors were encountered: