James Stanley - Hiding messages in chess games
I designed a steganography system that encodes data as a chess game. A convenient way to communicate chess games is PGN, but any means of communicating the moves of the game would work, as the information is encoded conceptually in the moves themselves, rather than taking advantage of any redundancy in the PGN format. You can play with it here: Chess Steganography. The code is on github. There is also a perl implementation of the same concept, but the encoding is incompatible because it was easier that way. As an example, the text "Hello, world!" becomes: You can look at this game on lichess, and copying and pasting the full PGN from lichess into the "Unsteg" box (despite lichess's annotations!) will allow you to retrieve the message. First we encode the input data bytes as a bignum so that it's easier to work with. I prepended an imaginary "0x01" byte to the input so that leading "0x00" bytes are not lost ("0x00 0x03" and "0x00 0x00 0x03" both become just "3" as a bignum; with a "0x01
I designed a steganography system that encodes data as a chess game. A convenient way to communicate chess games is PGN , but any means of communicating the moves of the game would work, as the information is encoded conceptually in the moves themselves, rather than taking advantage of any redundancy in the PGN format. You can play with it here: Chess Steganography . The code is on github . There is also a perl implementation of the same concept, but the encoding is incompatible because it was easier that way. As an example, the text "Hello, world!" becomes: 1. e3 b6 2. b3 Bb7 3. Nf3 Bxf3 4. B
Explore this link on the map →related reading
- Steganography - Wikipediaen.wikipedia.org
- Chess Engines: A Zero to One Guidechessengines.super.site
- Secret Messages Can Hide in AI-Generated Media | Quanta Magazinequantamagazine.org
- A Very Unlikely Chess Game | Slate Star Codexslatestarcodex.com
- Can chess be solved? – Rising Entropyrisingentropy.com
- The Smol Training Playbook - a Hugging Face Space by HuggingFaceTBhuggingface.co
- AI Chess Leaderboard - dubesor AI projectdubesor.de
- Basic Bit Manipulation - HackMDhackmd.io
- Zero Knowledge Proofs: An illustrated primer – A Few Thoughts on Cryptographic Engineeringblog.cryptographyengineering.com
- John Gordon: The Alice and Bob After Dinner Speechurbigenous.net
- OthelloGPT learned a bag of heuristics — LessWronglesswrong.com
- AlphaZero: Shedding new light on chess, shogi, and Go — Google DeepMinddeepmind.com