about summary refs log tree commit diff stats
path: root/html/080display.cc.html
Commit message (Expand)AuthorAgeFilesLines
* 3849Kartik K. Agaram2017-05-101-356/+356
* 3845Kartik K. Agaram2017-05-061-438/+409
* 3825Kartik K. Agaram2017-04-161-485/+428
* 3764 - better colors for cross-linksKartik K. Agaram2017-03-081-4/+5
* 3761Kartik K. Agaram2017-03-071-106/+107
* 3750Kartik K. Agaram2017-03-021-13/+13
* 3749Kartik K. Agaram2017-03-021-13/+13
* 3716Kartik K. Agaram2016-12-261-0/+2
* 3713 - cross-link calls with definitions in htmlKartik K. Agaram2016-12-261-62/+62
* 3710Kartik K. Agaram2016-12-261-556/+556
* 3709 - line numbers in htmlKartik K. Agaram2016-12-261-559/+583
* 3604Kartik K. Agaram2016-10-271-4/+4
* 3561Kartik K. Agaram2016-10-221-3/+3
* 3544Kartik K. Agaram2016-10-221-1/+1
* 3543Kartik K. Agaram2016-10-221-1/+1
* 3524Kartik K. Agaram2016-10-201-3/+3
* 3315Kartik K. Agaram2016-09-101-1/+41
* 3266Kartik K. Agaram2016-08-271-5/+5
* 3174Kartik K. Agaram2016-08-121-3/+19
* 3158Kartik K. Agaram2016-07-271-2/+2
* 2996Kartik K. Agaram2016-05-211-7/+7
* 2812Kartik K. Agaram2016-03-271-21/+30
* 2744Kartik K. Agaram2016-03-091-3/+3
* 2743Kartik K. Agaram2016-03-091-135/+127
* 2706 - update htmlKartik K. Agaram2016-02-251-2/+2
* 2605Kartik K. Agaram2016-01-261-2/+0
* 2545Kartik K. Agaram2015-12-151-1/+6
* 2430 - make room for more transformsKartik K. Agaram2015-11-131-0/+534
acts : Show contacts with assigned public keys. 14:37:52 - setkey <contact> <keyid> : Manually associate a contact with a public key. 14:37:52 - start [<contact>] : Start PGP encrypted chat, current contact will be used if not specified. 14:37:52 - end : End PGP encrypted chat with the current recipient. 14:37:52 - log on|off : Enable or disable plaintext logging of PGP encrypted messages. 14:37:52 - log redact : Log PGP encrypted messages, but replace the contents with [redacted]. This is the default. 14:37:52 - char <char> : Set the character to be displayed next to PGP encrypted messages. ``` ## OX We should implement the `/ox` command which can be used for XEP-0373 instead of XEP-0027. ``` /ox keys - List all public keys known to the system (gnupg's keyring) /ox contacts - Shows contacts with an assigned public key. ``` The `keys` command will list all public keys of gnupg's Keyring, independent if the key is in use for XMPP or not. In profanity we are going to implement the key lookup with a XMPP-URI as OpenPGP User-ID. An OpenPGP public key can only be used, if the owner of the public key created an User-ID with the XMPP-URI as Name. https://xmpp.org/extensions/xep-0373.html#openpgp-user-ids It's not required and possible to assign a contact to an public key. ``` sec rsa3072 2020-05-01 [SC] [verfällt: 2022-05-01] 7FA1EB8644BAC07E7F18E7C9F121E6A6F3A0C7A5 uid [ ultimativ ] Doctor Snuggles <doctor.snuggles@domain.tld> uid [ ultimativ ] xmpp:doctor.snuggles@domain.tld ssb rsa3072 2020-05-01 [E] [verfällt: 2022-05-01] ``` The `contacts` command will show all contacts of the roster with a public key in the keyring, if there is a xmpp user-id within the public key. OX provides the elements: `<signcrypt/>`, `<sign/>` and `<crypt/>`. Profanity implements signcrypt, only. ## Keys command The command `keys` is independent of the XEP. Should we move common commands (e.g. /pgp keys /ox keys) to /openpgp which will will be the function which are related to gnupg itself. ## Appendix * https://xmpp.org/extensions/xep-0373.html - 0.4.0 (2018-07-30)