Hazelnoot [she/her]
Transfem demigirl with an interest in coding, gaming, and retrocomputing.
My links:
- 0 Posts
- 2 Comments
Joined 2 years ago
Cake day: June 2nd, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
It’s XOR(key, block) with IV and chaining: https://github.com/RommieEcho/qrcatalyst-open/blob/main/src/routes/anon/XORCipher.js
Since it’s chained at the byte level, you can strip it out by just XORing each byte against all following bytes. Then the IV can be XORed out of the first block, at which point you have just a series of XOR(key, plaintext) blocks that can be attacked with conventional methods.