#character #ascii-text #set #character-set #contain #constructed #non-whitespace

boringascii

Strings that can only be constructed to contain non-whitespace, non-control ASCII characters

1 stable release

1.0.0 Oct 10, 2023

#812 in Text processing

Apache-2.0 OR CC0-1.0

6KB
123 lines

Zebra: an app for creating and verifying ring signatures

What are ring signatures?

Say you want to publish some information. You want people to know that it was published by someone trustworthy, with access to that information, but you don't want them to know exactly who published it. For example, it might be information about someone's misconduct, and you fear retaliation.

You can publish the information using a ring signature. To do this, you choose a set of people that you want to include in the "ring": This is the set of people who, to an observer, might have published the information. Then, you sign the message using your private key, and their public keys.

Once you publish the information with a ring signature, anyone who knows the public keys of the ring members (you and the other people whose keys you used) can tell that someone in that group signed the message. But they can't tell which person it was.

Design

Zebra is designed with the following principles in mind, in order from most important to least important:

  1. Zebra should be a trustworthy implementation of the theory of ring signatures. If you observe a signed message, and the app successfully verifies the signature, you should be able to feel confident in the signature.
  2. Zebra should be simple to use and hard to misuse. It should be almost trivial to create a signature, or import a key. It should be almost impossible to leak your private key, or compromise your anonymity within a ring.
  3. Zebra should be implemented as simply as possible, with the minimum set of dependencies. The more crucial a piece of code is for providing the trustworthiness guarantee, the fewer dependencies it should have.

Zebra is a dioxus app. This means that the user interface code can be understood by anyone with knowledge of web programming and Rust, but the app relies on the operating system's web view rather than a packaged browser. This improves resource usage somewhat compared to an electon app.

Cryptography

Zebra's ring signature implementation is based on the algorithm presented in the book Zero to Monero: Second Edition. We use the Ristretto group as our prime order group, and in particular the dalek-cryptography implementation.

Public keys (technically, self-signed certificates) contain the requisite group element, as well as a signature that verifies that the holder of the key claims to be associated with the identity provided.

Storage

Zebra uses age to encrypt an extremely simple database of keys. The password for this database is chosen randomly and stored in the system's keychain. So the operating system will prompt the user before allowing the database to be unlocked (on app start, or when modifying the database or using a private key).

We try pretty hard to avoid exposing private keys to other apps. They aren't stored in memory, except briefly when reading/writing the encrypted database, or when performing a signing operation, or, of course, when explicitly sending them to a new machine. When sending data to a remote machine, we use Magic Wormhole to ensure that the transfer is encrypted end-to-end. We also use secmem-proc to try to frustrate attempts at tracing the process or reading core dumps / swap.

The icon file zebra_head.png is a modification of "Zebra, Ngorogoro" by Woodlouse on Flickr. Unlike the rest of this repository, it is released under a Creative Commons Attribution-ShareAlike 2.0 Generic License.

Some of the code in this repository is released under an MIT license. Specifically, everything inside of the age and age-core directories, as well as the sign and verify functions in zebra_crypto/lib.rs.

Everything else is the copyright of Kurt Brown.

Dependencies

~1.7–2.4MB
~48K SLoC