├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── man ├── README ├── egpg.1 ├── egpg.1.html ├── egpg.1.ronn ├── make.sh └── toc.css ├── src ├── auxiliary.sh ├── bash-completion.sh ├── cmd │ ├── contact │ │ ├── certify.sh │ │ ├── delete.sh │ │ ├── export.sh │ │ ├── fetch.sh │ │ ├── fetchuri.sh │ │ ├── help.sh │ │ ├── import.sh │ │ ├── list.sh │ │ ├── receive.sh │ │ ├── search.sh │ │ ├── trust.sh │ │ └── uncertify.sh │ ├── default.sh │ ├── help.sh │ ├── info.sh │ ├── init.sh │ ├── key │ │ ├── backup.sh │ │ ├── delete.sh │ │ ├── fetch.sh │ │ ├── gen.sh │ │ ├── help.sh │ │ ├── join.sh │ │ ├── list.sh │ │ ├── pass.sh │ │ ├── recover.sh │ │ ├── renew.sh │ │ ├── restore.sh │ │ ├── rev.sh │ │ ├── revcert.sh │ │ ├── share.sh │ │ └── split.sh │ ├── migrate.sh │ ├── open.sh │ ├── seal.sh │ ├── set.sh │ ├── sign.sh │ └── verify.sh ├── egpg.sh ├── ext │ ├── cmd_contact_pick.sh │ ├── cmd_contact_test.sh │ ├── cmd_key2dongle.sh │ ├── cmd_key_fpr.sh │ ├── cmd_key_test.sh │ └── cmd_test.sh ├── fn │ ├── backup_key.sh │ ├── gpg_send_keys.sh │ ├── print_key.sh │ ├── qrencode.sh │ └── restore_key.sh ├── platform.sh └── platform │ ├── cygwin.sh │ ├── darwin.sh │ ├── freebsd.sh │ └── openbsd.sh ├── tests ├── .gitignore ├── docker.sh ├── dockerfile │ ├── debian-testing │ ├── fedora-23 │ └── ubuntu-16.04 ├── gnupg │ ├── 6073B549.gpg.asc │ ├── DA94668A.gpg.asc │ ├── gpg-agent.conf │ ├── gpg.conf │ ├── private-keys-v1.d │ │ ├── 3914E664597E9C5998B8BC994C420602895881AB.key │ │ └── 4FBC3BE37B348F15EDAA2D4B2A8BDC3B5358A7D9.key │ ├── pubring.kbx │ └── trustdb.gpg ├── run.sh ├── setup.sh ├── sharness.sh ├── t00-trivial.t ├── t01-version.t ├── t02-help.t ├── t03-init.t ├── t04-info.t ├── t05-key-fetch.t ├── t06-set.t ├── t07-contact-fetch.t ├── t08-migrate.t ├── t09-sign.t ├── t10-verify.t ├── t11-seal.t ├── t12-open.t ├── t13-gpg.t ├── t14-default.t ├── t21-key-delete.t ├── t22-key-backup.t ├── t23-key-restore.t ├── t24-key-pass.t ├── t25-key-share.t ├── t26-key-renew.t ├── t27-key-gen-nopass.t ├── t28-key-gen-withpass.t ├── t29-key-revcert.t ├── t30-key-revoke.t ├── t31-key-split.t ├── t32-key-join.t ├── t33-key-recover.t ├── t34-split-key.t ├── t51-contact-ls.t ├── t52-contact-delete.t ├── t53-contact-fetch-uri.t ├── t54-contact-receive.t ├── t55-contact-export.t ├── t56-contact-import.t ├── t57-contact-search.t ├── t58-contact-certify.t ├── t59-contact-uncertify.t ├── t60-contact-trust.t ├── t71-ext-key-fpr.t ├── t72-ext-contact-pick.t └── t73-ext-key2dongle.t └── utils ├── autopin.sh └── reload-gpg-agent.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/README.md -------------------------------------------------------------------------------- /man/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/man/README -------------------------------------------------------------------------------- /man/egpg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/man/egpg.1 -------------------------------------------------------------------------------- /man/egpg.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/man/egpg.1.html -------------------------------------------------------------------------------- /man/egpg.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/man/egpg.1.ronn -------------------------------------------------------------------------------- /man/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/man/make.sh -------------------------------------------------------------------------------- /man/toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/man/toc.css -------------------------------------------------------------------------------- /src/auxiliary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/auxiliary.sh -------------------------------------------------------------------------------- /src/bash-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/bash-completion.sh -------------------------------------------------------------------------------- /src/cmd/contact/certify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/certify.sh -------------------------------------------------------------------------------- /src/cmd/contact/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/delete.sh -------------------------------------------------------------------------------- /src/cmd/contact/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/export.sh -------------------------------------------------------------------------------- /src/cmd/contact/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/fetch.sh -------------------------------------------------------------------------------- /src/cmd/contact/fetchuri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/fetchuri.sh -------------------------------------------------------------------------------- /src/cmd/contact/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/help.sh -------------------------------------------------------------------------------- /src/cmd/contact/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/import.sh -------------------------------------------------------------------------------- /src/cmd/contact/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/list.sh -------------------------------------------------------------------------------- /src/cmd/contact/receive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/receive.sh -------------------------------------------------------------------------------- /src/cmd/contact/search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/search.sh -------------------------------------------------------------------------------- /src/cmd/contact/trust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/trust.sh -------------------------------------------------------------------------------- /src/cmd/contact/uncertify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/contact/uncertify.sh -------------------------------------------------------------------------------- /src/cmd/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/default.sh -------------------------------------------------------------------------------- /src/cmd/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/help.sh -------------------------------------------------------------------------------- /src/cmd/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/info.sh -------------------------------------------------------------------------------- /src/cmd/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/init.sh -------------------------------------------------------------------------------- /src/cmd/key/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/backup.sh -------------------------------------------------------------------------------- /src/cmd/key/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/delete.sh -------------------------------------------------------------------------------- /src/cmd/key/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/fetch.sh -------------------------------------------------------------------------------- /src/cmd/key/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/gen.sh -------------------------------------------------------------------------------- /src/cmd/key/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/help.sh -------------------------------------------------------------------------------- /src/cmd/key/join.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/join.sh -------------------------------------------------------------------------------- /src/cmd/key/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/list.sh -------------------------------------------------------------------------------- /src/cmd/key/pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/pass.sh -------------------------------------------------------------------------------- /src/cmd/key/recover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/recover.sh -------------------------------------------------------------------------------- /src/cmd/key/renew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/renew.sh -------------------------------------------------------------------------------- /src/cmd/key/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/restore.sh -------------------------------------------------------------------------------- /src/cmd/key/rev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/rev.sh -------------------------------------------------------------------------------- /src/cmd/key/revcert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/revcert.sh -------------------------------------------------------------------------------- /src/cmd/key/share.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/share.sh -------------------------------------------------------------------------------- /src/cmd/key/split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/key/split.sh -------------------------------------------------------------------------------- /src/cmd/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/migrate.sh -------------------------------------------------------------------------------- /src/cmd/open.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/open.sh -------------------------------------------------------------------------------- /src/cmd/seal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/seal.sh -------------------------------------------------------------------------------- /src/cmd/set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/set.sh -------------------------------------------------------------------------------- /src/cmd/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/sign.sh -------------------------------------------------------------------------------- /src/cmd/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/cmd/verify.sh -------------------------------------------------------------------------------- /src/egpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/egpg.sh -------------------------------------------------------------------------------- /src/ext/cmd_contact_pick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/ext/cmd_contact_pick.sh -------------------------------------------------------------------------------- /src/ext/cmd_contact_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/ext/cmd_contact_test.sh -------------------------------------------------------------------------------- /src/ext/cmd_key2dongle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/ext/cmd_key2dongle.sh -------------------------------------------------------------------------------- /src/ext/cmd_key_fpr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/ext/cmd_key_fpr.sh -------------------------------------------------------------------------------- /src/ext/cmd_key_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/ext/cmd_key_test.sh -------------------------------------------------------------------------------- /src/ext/cmd_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/ext/cmd_test.sh -------------------------------------------------------------------------------- /src/fn/backup_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/fn/backup_key.sh -------------------------------------------------------------------------------- /src/fn/gpg_send_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/fn/gpg_send_keys.sh -------------------------------------------------------------------------------- /src/fn/print_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/fn/print_key.sh -------------------------------------------------------------------------------- /src/fn/qrencode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/fn/qrencode.sh -------------------------------------------------------------------------------- /src/fn/restore_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/fn/restore_key.sh -------------------------------------------------------------------------------- /src/platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/platform.sh -------------------------------------------------------------------------------- /src/platform/cygwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/platform/cygwin.sh -------------------------------------------------------------------------------- /src/platform/darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/platform/darwin.sh -------------------------------------------------------------------------------- /src/platform/freebsd.sh: -------------------------------------------------------------------------------- 1 | GETOPT="/usr/local/bin/getopt" 2 | SHRED="rm -P -f" 3 | -------------------------------------------------------------------------------- /src/platform/openbsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/src/platform/openbsd.sh -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/docker.sh -------------------------------------------------------------------------------- /tests/dockerfile/debian-testing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/dockerfile/debian-testing -------------------------------------------------------------------------------- /tests/dockerfile/fedora-23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/dockerfile/fedora-23 -------------------------------------------------------------------------------- /tests/dockerfile/ubuntu-16.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/dockerfile/ubuntu-16.04 -------------------------------------------------------------------------------- /tests/gnupg/6073B549.gpg.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/gnupg/6073B549.gpg.asc -------------------------------------------------------------------------------- /tests/gnupg/DA94668A.gpg.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/gnupg/DA94668A.gpg.asc -------------------------------------------------------------------------------- /tests/gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /tests/gnupg/gpg.conf: -------------------------------------------------------------------------------- 1 | keyid-format long 2 | default-cert-expire 1y 3 | -------------------------------------------------------------------------------- /tests/gnupg/private-keys-v1.d/3914E664597E9C5998B8BC994C420602895881AB.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/gnupg/private-keys-v1.d/3914E664597E9C5998B8BC994C420602895881AB.key -------------------------------------------------------------------------------- /tests/gnupg/private-keys-v1.d/4FBC3BE37B348F15EDAA2D4B2A8BDC3B5358A7D9.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/gnupg/private-keys-v1.d/4FBC3BE37B348F15EDAA2D4B2A8BDC3B5358A7D9.key -------------------------------------------------------------------------------- /tests/gnupg/pubring.kbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/gnupg/pubring.kbx -------------------------------------------------------------------------------- /tests/gnupg/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/gnupg/trustdb.gpg -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/setup.sh -------------------------------------------------------------------------------- /tests/sharness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/sharness.sh -------------------------------------------------------------------------------- /tests/t00-trivial.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t00-trivial.t -------------------------------------------------------------------------------- /tests/t01-version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t01-version.t -------------------------------------------------------------------------------- /tests/t02-help.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t02-help.t -------------------------------------------------------------------------------- /tests/t03-init.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t03-init.t -------------------------------------------------------------------------------- /tests/t04-info.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t04-info.t -------------------------------------------------------------------------------- /tests/t05-key-fetch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t05-key-fetch.t -------------------------------------------------------------------------------- /tests/t06-set.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t06-set.t -------------------------------------------------------------------------------- /tests/t07-contact-fetch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t07-contact-fetch.t -------------------------------------------------------------------------------- /tests/t08-migrate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t08-migrate.t -------------------------------------------------------------------------------- /tests/t09-sign.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t09-sign.t -------------------------------------------------------------------------------- /tests/t10-verify.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t10-verify.t -------------------------------------------------------------------------------- /tests/t11-seal.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t11-seal.t -------------------------------------------------------------------------------- /tests/t12-open.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t12-open.t -------------------------------------------------------------------------------- /tests/t13-gpg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t13-gpg.t -------------------------------------------------------------------------------- /tests/t14-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t14-default.t -------------------------------------------------------------------------------- /tests/t21-key-delete.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t21-key-delete.t -------------------------------------------------------------------------------- /tests/t22-key-backup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t22-key-backup.t -------------------------------------------------------------------------------- /tests/t23-key-restore.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t23-key-restore.t -------------------------------------------------------------------------------- /tests/t24-key-pass.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t24-key-pass.t -------------------------------------------------------------------------------- /tests/t25-key-share.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t25-key-share.t -------------------------------------------------------------------------------- /tests/t26-key-renew.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t26-key-renew.t -------------------------------------------------------------------------------- /tests/t27-key-gen-nopass.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t27-key-gen-nopass.t -------------------------------------------------------------------------------- /tests/t28-key-gen-withpass.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t28-key-gen-withpass.t -------------------------------------------------------------------------------- /tests/t29-key-revcert.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t29-key-revcert.t -------------------------------------------------------------------------------- /tests/t30-key-revoke.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t30-key-revoke.t -------------------------------------------------------------------------------- /tests/t31-key-split.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t31-key-split.t -------------------------------------------------------------------------------- /tests/t32-key-join.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t32-key-join.t -------------------------------------------------------------------------------- /tests/t33-key-recover.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t33-key-recover.t -------------------------------------------------------------------------------- /tests/t34-split-key.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t34-split-key.t -------------------------------------------------------------------------------- /tests/t51-contact-ls.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t51-contact-ls.t -------------------------------------------------------------------------------- /tests/t52-contact-delete.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t52-contact-delete.t -------------------------------------------------------------------------------- /tests/t53-contact-fetch-uri.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t53-contact-fetch-uri.t -------------------------------------------------------------------------------- /tests/t54-contact-receive.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t54-contact-receive.t -------------------------------------------------------------------------------- /tests/t55-contact-export.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t55-contact-export.t -------------------------------------------------------------------------------- /tests/t56-contact-import.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t56-contact-import.t -------------------------------------------------------------------------------- /tests/t57-contact-search.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t57-contact-search.t -------------------------------------------------------------------------------- /tests/t58-contact-certify.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t58-contact-certify.t -------------------------------------------------------------------------------- /tests/t59-contact-uncertify.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t59-contact-uncertify.t -------------------------------------------------------------------------------- /tests/t60-contact-trust.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t60-contact-trust.t -------------------------------------------------------------------------------- /tests/t71-ext-key-fpr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t71-ext-key-fpr.t -------------------------------------------------------------------------------- /tests/t72-ext-contact-pick.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t72-ext-contact-pick.t -------------------------------------------------------------------------------- /tests/t73-ext-key2dongle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/tests/t73-ext-key2dongle.t -------------------------------------------------------------------------------- /utils/autopin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/utils/autopin.sh -------------------------------------------------------------------------------- /utils/reload-gpg-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyGnuPG/egpg/HEAD/utils/reload-gpg-agent.sh --------------------------------------------------------------------------------