├── CHANGELOG.md ├── COPYING ├── Makefile ├── README.md ├── base64.c ├── bcrypt_pbkdf.c ├── blf.h ├── blowfish.c ├── compat.h ├── conf ├── HAVE_GETEXECNAME.c ├── HAVE_PROGRAM_INVOCATION_SHORT_NAME.c └── HAVE___PROGNAME.c ├── crypto_api.c ├── crypto_api.h ├── explicit_bzero.c ├── explicit_bzero.h ├── fe25519.c ├── fe25519.h ├── ge25519.h ├── ge25519_base.data ├── helper.c ├── keys ├── signifyportable.pub └── signifyportable.pub.asc ├── libbsd ├── arc4random.c ├── arc4random.h ├── arc4random_linux.h ├── arc4random_openbsd.h ├── arc4random_unix.h ├── arc4random_win.h ├── bsd │ ├── libutil.h │ ├── readpassphrase.h │ ├── stdlib.h │ ├── string.h │ └── sys │ │ └── cdefs.h ├── chacha_private.h ├── freezero.c ├── progname.c ├── readpassphrase.c └── strlcpy.c ├── mod_ed25519.c ├── mod_ge25519.c ├── ohash.c ├── ohash.h ├── pledge_noop.c ├── pledge_waive.c ├── regress ├── cvs-files ├── forgery.txt ├── forgery.txt.sig ├── orders.txt ├── orders.txt.sig ├── regresskey.pub ├── regresskey.sec ├── run └── signify.sh ├── sc25519.c ├── sc25519.h ├── sha2.c ├── sha2.h ├── signify.1 ├── signify.c ├── signify.h ├── timingsafe_bcmp.c └── zsig.c /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/README.md -------------------------------------------------------------------------------- /base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/base64.c -------------------------------------------------------------------------------- /bcrypt_pbkdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/bcrypt_pbkdf.c -------------------------------------------------------------------------------- /blf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/blf.h -------------------------------------------------------------------------------- /blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/blowfish.c -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/compat.h -------------------------------------------------------------------------------- /conf/HAVE_GETEXECNAME.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/conf/HAVE_GETEXECNAME.c -------------------------------------------------------------------------------- /conf/HAVE_PROGRAM_INVOCATION_SHORT_NAME.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/conf/HAVE_PROGRAM_INVOCATION_SHORT_NAME.c -------------------------------------------------------------------------------- /conf/HAVE___PROGNAME.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/conf/HAVE___PROGNAME.c -------------------------------------------------------------------------------- /crypto_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/crypto_api.c -------------------------------------------------------------------------------- /crypto_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/crypto_api.h -------------------------------------------------------------------------------- /explicit_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/explicit_bzero.c -------------------------------------------------------------------------------- /explicit_bzero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/explicit_bzero.h -------------------------------------------------------------------------------- /fe25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/fe25519.c -------------------------------------------------------------------------------- /fe25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/fe25519.h -------------------------------------------------------------------------------- /ge25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/ge25519.h -------------------------------------------------------------------------------- /ge25519_base.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/ge25519_base.data -------------------------------------------------------------------------------- /helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/helper.c -------------------------------------------------------------------------------- /keys/signifyportable.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/keys/signifyportable.pub -------------------------------------------------------------------------------- /keys/signifyportable.pub.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/keys/signifyportable.pub.asc -------------------------------------------------------------------------------- /libbsd/arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/arc4random.c -------------------------------------------------------------------------------- /libbsd/arc4random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/arc4random.h -------------------------------------------------------------------------------- /libbsd/arc4random_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/arc4random_linux.h -------------------------------------------------------------------------------- /libbsd/arc4random_openbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/arc4random_openbsd.h -------------------------------------------------------------------------------- /libbsd/arc4random_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/arc4random_unix.h -------------------------------------------------------------------------------- /libbsd/arc4random_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/arc4random_win.h -------------------------------------------------------------------------------- /libbsd/bsd/libutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/bsd/libutil.h -------------------------------------------------------------------------------- /libbsd/bsd/readpassphrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/bsd/readpassphrase.h -------------------------------------------------------------------------------- /libbsd/bsd/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/bsd/stdlib.h -------------------------------------------------------------------------------- /libbsd/bsd/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/bsd/string.h -------------------------------------------------------------------------------- /libbsd/bsd/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/bsd/sys/cdefs.h -------------------------------------------------------------------------------- /libbsd/chacha_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/chacha_private.h -------------------------------------------------------------------------------- /libbsd/freezero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/freezero.c -------------------------------------------------------------------------------- /libbsd/progname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/progname.c -------------------------------------------------------------------------------- /libbsd/readpassphrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/readpassphrase.c -------------------------------------------------------------------------------- /libbsd/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/libbsd/strlcpy.c -------------------------------------------------------------------------------- /mod_ed25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/mod_ed25519.c -------------------------------------------------------------------------------- /mod_ge25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/mod_ge25519.c -------------------------------------------------------------------------------- /ohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/ohash.c -------------------------------------------------------------------------------- /ohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/ohash.h -------------------------------------------------------------------------------- /pledge_noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/pledge_noop.c -------------------------------------------------------------------------------- /pledge_waive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/pledge_waive.c -------------------------------------------------------------------------------- /regress/cvs-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/regress/cvs-files -------------------------------------------------------------------------------- /regress/forgery.txt: -------------------------------------------------------------------------------- 1 | Attack at dusk! 2 | -------------------------------------------------------------------------------- /regress/forgery.txt.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/regress/forgery.txt.sig -------------------------------------------------------------------------------- /regress/orders.txt: -------------------------------------------------------------------------------- 1 | Attack at dawn! 2 | -------------------------------------------------------------------------------- /regress/orders.txt.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/regress/orders.txt.sig -------------------------------------------------------------------------------- /regress/regresskey.pub: -------------------------------------------------------------------------------- 1 | untrusted comment: signify public key 2 | RWTAeKJJ1MTF3YCo0ivtKH8kuiFWJuLpNoUmpDd6iTFYhn6/tRu5qKJe 3 | -------------------------------------------------------------------------------- /regress/regresskey.sec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/regress/regresskey.sec -------------------------------------------------------------------------------- /regress/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/regress/run -------------------------------------------------------------------------------- /regress/signify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/regress/signify.sh -------------------------------------------------------------------------------- /sc25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/sc25519.c -------------------------------------------------------------------------------- /sc25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/sc25519.h -------------------------------------------------------------------------------- /sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/sha2.c -------------------------------------------------------------------------------- /sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/sha2.h -------------------------------------------------------------------------------- /signify.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/signify.1 -------------------------------------------------------------------------------- /signify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/signify.c -------------------------------------------------------------------------------- /signify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/signify.h -------------------------------------------------------------------------------- /timingsafe_bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/timingsafe_bcmp.c -------------------------------------------------------------------------------- /zsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperezdc/signify/HEAD/zsig.c --------------------------------------------------------------------------------