• Stars
    star
    302
  • Rank 136,954 (Top 3 %)
  • Language
    C++
  • License
    GNU Lesser Genera...
  • Created almost 12 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Post-quantum cryptography tool (THIS REPOSITORY IS ONLY A MIRROR OF THE MAIN ONE, PLEASE DO NOT FILE BUGS HERE)

Codecrypt

The post-quantum cryptography tool.

Codecrypt is currently unmaintained, although I still successfully use it. If you are interested in developing/maintaining it, ping me.

About

This is a GnuPG-like unix program for encryption and signing that uses only quantum-computer-resistant algorithms:

  • McEliece cryptosystem (compact QC-MDPC variant) for encryption
  • Hash-based Merkle tree algorithm (FMTSeq variant) for digital signatures

Codecrypt is free software. The code is licensed under terms of LGPL3 in a good hope that it will make combinations with other tools easier.

Why this?

Go read http://pqcrypto.org/

Links

Distro packages

Language wrappers:

Documentation

There is a complete, UNIXy manual page supplied with the package. You can view it online here: http://e-x-a.org/codecrypt/ccr.1.html

Used cryptography overview

To achieve the stated goal, codecrypt uses a lot of (traditional, but "quantum-secure") cryptographic primitives. Choices of primitives were based on easy auditability of design, simplicity and provided security.

The git repo of codecrypt contains doc/papers with an unsorted heap of academic papers and slides about relevant topics.

Stream ciphers used:

  • ChaCha20, the recommended choice from djb
  • XSynd stream cipher as an interesting and nontraditional candidate also based on assumptions from coding theory; used NUMS (it requires lot of NUMS) are explained in doc/nums directory in the repo.
  • Arcfour for initial simplicity of implementation. After recent statistical attacks I cannot recommend using any RC4 variant anymore, but provided padding and the "offline-only" usage of codecrypt keeps the usage mostly secure.

CRHFs used:

  • Cubehash variants were selected for implementation ease, really clean design, quite good speed and flexibility of parameter choices. This is also the only hash possibility when Crypto++ library is not linked to codecrypt. KeyIDs are CUBE256 hashes of corresponding serialized public keys.
  • ripemd128 for small hashes
  • tiger192 is used as an alternative for Cubehash for 192bit hashes
  • There's always a variant with SHA-256, SHA-384 or SHA-512.

Signature algorithms:

  • FMTSeq with many possibilities and combinations of aforementioned CRHFs
  • SPHINCS256 support is scheduled for next release

Encryption algorithms:

  • MDPC McEliece on quasi-cyclic matrices. The implementation uses some tricks to speedup the (pretty slow) cyclic matrix multiplication (most notably libfftm3 in this version). For padding using the Fujisaki-Okamoto scheme, the cipher requires a stream cipher and a CRHF, used ciphers and CRHFs are specified in the algorithm name -- e.g. MCEQCMDPC128FO-CUBE256-CHACHA20 means that the parameters are tuned to provide 128bit security, uses CUBE256 hash, and ChaCha20 stream cipher.
  • Quasi-dyadic McEliece was included in codecrypt as an original algorithm, but is now broken and prints a warning message on any usage.

Caveats:

Cryptography is not intended for "online" use, because some algorithms (especially the MDPC decoding) are (slightly) vulnerable to timing attacks.

Quick How-To

Everything is meant to work mostly like GnuPG, but with some good simplicity margin. Let's play with random data!

ccr -g help
ccr -g sig --name "John Doe"    # your signature key
ccr -g enc --name "John Doe"    # your encryption key

ccr -K  #watch the generated keys
ccr -k

ccr -p -a -o my_pubkeys.asc -F Doe  # export your pubkeys for friends

#(now you should exchange the pubkeys with friends)

#see what people sent us, possibly check the fingerprints
ccr -inaf < friends_pubkeys.asc

#import Frank's key and rename it
ccr -ia -R friends_pubkeys.asc --name "Friendly Frank"

#send a nice message to Frank (you can also specify him by @12345 keyid)
ccr -se -r Frank < Document.doc > Message_to_frank.ccr

#receive a reply
ccr -dv -o Decrypted_verified_reply.doc <Reply_from_frank.ccr

#rename other's keys
ccr -m Frank -N "Unfriendly Frank"

#and delete pukeys of everyone who's Unfriendly
ccr -x Unfri

#create hashfile from a large file
ccr -sS hashfile.ccr < big_data.iso

#verify the hashfile
ccr -vS hashfile.ccr < the_same_big_data.iso

#create (ascii-armored) symmetric key and encrypt a large file
ccr -g sha256,chacha20 -aS symkey.asc
ccr -eaS symkey.asc -R big_data.iso -o big_data_encrypted.iso

#decrypt a large file
ccr -daS symkey.asc <big_data_encrypted.iso >big_data.iso

#password-protect all your private keys
ccr -L

#protect a symmetric key using another symmetric key
ccr -L -S symkey1 -w symkey2

#password-protect symkey2 with a custom cipher
ccr -L -S symkey2 -w @xsynd,cube512

Option reference

For completeness I add listing of all options here (also available from ccr --help)

Usage: ./ccr [options]

Common options:
 -h, --help     display this help
 -V, --version  display version information
 -T, --test     perform (probably nonexistent) testing/debugging stuff

Global options:
 -R, --in      set input file, default is stdin
 -o, --out     set output file, default is stdout
 -E, --err     the same for stderr
 -a, --armor   use ascii-armored I/O
 -y, --yes     assume that answer is `yes' everytime

Actions:
 -s, --sign     sign a message
 -v, --verify   verify a signed message
 -e, --encrypt  encrypt a message
 -d, --decrypt  decrypt an encrypted message

Action options:
 -r, --recipient    encrypt for given user
 -u, --user         use specified secret key
 -C, --clearsign    work with cleartext signatures
 -b, --detach-sign  specify file with detached signature
 -S, --symmetric    enable symmetric mode of operation where encryption
		    is done using symmetric cipher and signatures are
		    hashes, and specify a filename of symmetric key or hashes

Key management:
 -g, --gen-key        generate keys for specified algorithm
 -g help              list available cryptographic algorithms
 -k, --list           list the contents of keyring
 -K, --list-secret
 -i, --import         import keys
 -I, --import-secret
 -p, --export         export keys
 -P, --export-secret
 -x, --delete         delete matching keys
 -X, --delete-secret
 -m, --rename         rename matching keys
 -M, --rename-secret
 -L, --lock           lock secrets
 -U, --unlock         unlock secrets

Key management options:
 -F, --filter       only work with keys with matching names
 -f, --fingerprint  format full key IDs nicely for human eyes
 -N, --name         specify a new name for renaming or importing
 -n, --no-action    on import, only show what would be imported
 -w, --with-lock    specify the symmetric key for (un)locking the secrets
 -w @SPEC           ask for password and expand it to a symmetric key
                    of type SPEC for (un)locking the secret

Disclaimer

Codecrypt eats data. Use it with caution. Read the F manual.

Author is a self-taught cryptographer.

More Repositories

1

scattermore

very fast scatterplots for R
R
226
star
2

ls47

Variant of hand-computable ElsieFour cipher with 7x7 3D-printable board. THIS REPOSITORY IS A MIRROR, DO NOT OPEN ISSUES HERE.
Python
43
star
3

better-mff-thesis

A slightly improved variant of the official thesis sample
TeX
26
star
4

EmbedSOM

Fast embedding ot multidimensional datasets, great for cytometry data
R
24
star
5

zfs-backup

Zfs backup juggling tool -- snapshotting, archiving, retention.
9
star
6

cloudvpn

Meshing VPN tool.
C
7
star
7

btrpstr

attempt at a minimalistic and nice TikZ poster class for #betterposter
TeX
6
star
8

simple-mff-slides

A non-template for Beamer slides with Metropolis.
TeX
5
star
9

R.asne

A-tSNE for R
C++
4
star
10

panelbuilder

Panel optimization and unmixing tool for multicolor and spectral cytometry
R
3
star
11

nougad

non-linear unmixing by gradient descent
R
3
star
12

orthos

Extremely skinnable X11 display manager.
C++
3
star
13

ShinySOM

Interactive flow+mass cytometry data analysis with SOMs (for R Shiny)
R
2
star
14

pulseaudio-dummy-deb

Dummy PulseAudio package with precisely zero PulseAudio!
Makefile
2
star
15

hilbert-curve-o1

Constant-time integer transform to 2D Hilbert curve
C
2
star
16

covtools.jl

commandline tools for exploring test coverage of julia projects
Julia
2
star
17

xcompose

small useful xcompose with greek letters and some math
2
star
18

simple-mff-poster

a simple poster starter-pack for MFF bachelors
TeX
2
star
19

hs21

Domácí úkoly na NPRG068 Programování v Haskellu 2021/22
Haskell
2
star
20

chownmap

chown whole UID/GID ranges, e.g. for LXC unprivileged containers
Roff
2
star
21

rash

RAcing in baSH!
Shell
2
star
22

escm

exa scheme, the C++-connected scheme interpreter.
C++
2
star
23

apulse-debian

apulse packaged for debian
C
1
star
24

shinyDendro

idendro for R Shiny (pronounce as shin-i-dendro)
JavaScript
1
star
25

dte-debian

debian gbp packaging for dte text editor -- https://craigbarnes.gitlab.io/dte/
C
1
star
26

latex-dinkus

latex typesetting of dinkus, asterism, and similar breaks
TeX
1
star
27

gigascatter-tiles

zoomable gigascatter plots (WIP)
Julia
1
star
28

bunnykill

Furry bunny hopping game for lovers of jumpnbump. Includes blood. Lots of.
C++
1
star
29

manurxiv

A helper manuscript styling class
TeX
1
star
30

elixirposter-tex

LaTeX template for Elixir-Europe conference posters
TeX
1
star
31

english-verb-tense-hypercube

Tikz/TeX poster to show people when trying to explain stuff like "I would have never been being kicked in my grammar-aware cortex." See website for PDF.
TeX
1
star