How to use GnuPG to encrypt messages for GKC ARGs as well as team communications

Okay, umm… this might seem off-topic, but hear me out on this one.

Imagine that you have text in your map that you want to encrypt, to make it into an interesting puzzle. But you don’t want to use a weak cipher and need strong cryptography.

This is where GnuPG comes in. GnuPG, often shortened to GPG, is an implementation of PGP created by the Free Software Foundation. It makes complex cryptography very easy-to-use.

First of all, you obviously need to install it.

On Debian, Ubuntu, and other Debian-based linux distributions, you can just use a single command to install it (take that, windows users!): sudo apt install gnupg

If you are on Windows, gpg4win is probably what you want (it’s linked to on the official GnuPG website), although I haven’t personally used it before.

Passphrase-based Encryption

This is the easiest-to-understand thing you can do with GnuPG, and for encrypted text in maps this is probably what you want.

Here’s an example:

gpg --output output.gpg --symmetric --quiet --armor --cipher-algo AES256 --compress-algo none message.txt

Here’s a breakdown of the command-line flags:

  • --output output.gpg sets the output file path to output.gpg - This is where the encrypted version will be stored.
  • --symmetric tells GnuPG that we want to encrypt a file with symmetric encryption
  • --quiet prevents GnuPG from showing other information (warnings, etc.) that we don’t care about. Feel free to remove this if you want to have some extra fun!
  • --armor switches the output encoding from a binary encoding format to a text-based one which uses Base64.
  • --cipher-algo AES256 sets the encryption algorithm to AES-256. As of writing this AES-256 is most likely what you want to use.
  • --compress-algo none turns off compression. If you are encrypting large files, change none to zlib, as it will reduce the output size in many cases.
  • message.txt is the name of the input file to encrypt.

For more information I would actually recommend reading the guide by NASA on using GnuPG for symmetric encryption.

Examples

Hello, World!, encrypted with the passphrase password using AES-256 and no compression:

-----BEGIN PGP MESSAGE-----

jA0ECQMC/hR8RLQScIb/0k4BJh+u63kCDVjxQEMWA/Y8TNc1IyxWKbdN4ZPooKIY
V7tmA58EkQQObELHKwVPGTV3cv71KIylR3fQ1XdoEQtgQN9Ick+dNx+P3AorjYI=
=97vM
-----END PGP MESSAGE-----
12 Likes

ooooo sounds awesome cant to try and test it out but I might not be able to…

1 Like

Oh I need to download it…

1 Like

Is this only for Windows?

There are ways to use GnuPG encryption in a web browser (ProtonMail does this, for example), but I’m not aware of a tool that lets you just input the passphrase, input the data, and encrypt it, all in a web browser. If anyone wants it I could obviously just make one myself though - there are already existing libraries that make this rather easy.

Can I use it on Chrome?

No. It works on (GNU/)Linux, MacOS, and Windows, although I have personally only used it on GNU/Linux.

1 Like

If you can find a browser app that can do it, sure! However, GnuPG itself is a native command line program, not a browser app.

You’re supposed to run it on shell script…

Shell Script? I’m not used to code :sweat_smile:

ciphers are amazing but hard (like the vigenere cipher)

but it’s not like everyone can use gnupg

otherwise nice guide

1 Like

Wait but how am I ever gonna use this reasonably in a creative game lol

1 Like

You encrypt the encryption method in your save code and then use that so that the user can’t cheat and say that they go 1mil cash. Duh

how’s about something like those codes in toag/ctf?

also don’t use caesar ciphers (too easy)

Invalid use- the guide doesn’t explain how to implement it in gimkit creative so I wouldn’t count that.

1 Like

Also, as someone who ACTUALLY understands anti-cheat… encrypting save codes like that will NOT stop people from cheating. I know this from personal experience.

3 Likes

this is cool. even though I don’t understand most of the stuff…

1 Like

this man needs a oscar

also am i the only person here who actually understands this???

2 Likes

wait what??? as long as they dont know how to encryption works, they cant make their own save code!

You’re making the assumption that the client-side code can’t be reverse-engineered, which is unbelievably naive. Don’t do that.

Anything that can be sent can be spoofed. Never trust the client.

2 Likes