Format uid string correctly when creating keys.

Correct format :
	name <email> (comment)
Was :
	name <email> comment

Though the 'comment' part was visible with the cli gpg app, it was not
shown in kleopatra and in K7.
This commit is contained in:
SET
2020-11-16 14:39:57 +01:00
parent 0e9cc34ac0
commit 3ac566fbfe
3 changed files with 20 additions and 12 deletions

View File

@@ -159,6 +159,9 @@ private:
Context * m_ctx;
// GPG will fetch a password here.
LoopbackPassphraseProvider * m_ppp;
string MakeUidString(const string& name, const string& email,
const string& comment);
};
/**