sequoia-sq/tests/integration.rs
Neal H. Walfield 22284ed9b1
Add new subcommand sq pki authorize.
- Previously `sq pki certify` could create certifications, and mark
    a certificate as a trusted introducer (when the user set `--depth`
    to be greater than zero).  Anecdotal evidence indicates that
    combining these two actions in a single command is confusing.

  - Split the latter functionality off, and put it in a new subcommand,
    `sq pki authorize`.

  - See https://gitlab.com/sequoia-pgp/sequoia-sq/-/issues/249#note_1865470753
2024-10-14 17:46:18 +02:00

31 lines
722 B
Rust

mod integration {
mod common;
mod sq_autocrypt;
mod sq_cert_export;
mod sq_cert_import;
mod sq_cert_lint;
mod sq_decrypt;
mod sq_encrypt;
mod sq_key_subkey_bind;
mod sq_key_approvals_update;
mod sq_key_delete;
mod sq_key_expire;
mod sq_key_generate;
mod sq_key_import_export;
mod sq_key_password;
mod sq_key_revoke;
mod sq_key_subkey;
mod sq_key_subkey_delete;
mod sq_key_subkey_expire;
mod sq_key_subkey_password;
mod sq_key_userid;
mod sq_pki;
mod sq_pki_certify;
mod sq_pki_authorize;
mod sq_pki_link;
mod sq_sign;
mod sq_toolbox_keyring_filter;
mod sq_toolbox_packet_decrypt;
mod sq_toolbox_packet_dump;
}