IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an
email to Administrator. User accounts are meant only to access repo
and report issues and/or generate pull requests.
This is a purpose-specific Git hosting for
BaseALT
projects. Thank you for your understanding!
Только зарегистрированные пользователи имеют доступ к сервису!
Для получения аккаунта, обратитесь к администратору.
- This is an ugly gpgism. All encrypted messages are symmetrically
encrypted. Not all password-encrypted messages encrypt the
session key symmetrically. Use language the user understands.
- Fixes#331.
- We cannot create empty WKD hierarchies due to how sequoia_net::wkd
works. For now, require at least one certificate to be inserted at
creation time.
- Fixes#323.
- Unlike other commands, `sq cert export`'s `--cert` argument only
matches on the certificate's key handle (i.e., the primary key's
key handle). It also has a `--key` argument to match on the
primary key's key handle or a subkey's key handle, which are
the semantics of the `--cert` argument for other commands.
- Change the semantics of `--cert` to that of `--key`, i.e., change
`--cert` to also match on subkey key handles. Remove the `--key`
argument since it is now redundant.
- We want the examples to be relevant and to the point, and reflect
the work flows that we want our users to have. Notably, we want
them to have their secret key material in the key store, not
laying around on their file system.
- --binary is a modifier for --output. If we don't output anything,
the modifier doesn't make sense, and should raise an error.
- Unfortunately, many places where we have an output parameter are
quite complex. For example, the absence of an output parameter
means don't output anything when we got a cert from the cert
store, and means output to stdout when we got the cert from a
file.
- This change covers the trivial cases.
- When encrypting a message with a password, don't terminate the
program if user doesn't provide a password. Instead, show an
error, and prompt the user for a password again.