如何在密钥的“实名”位中使用 Unicode?

如何在密钥的“实名”位中使用 Unicode?

GPG 似乎支持 Unicode,但我无法真正工作

% gpg --utf8-strings --display-charset utf-8 --edit-key [email protected]
gpg (GnuPG) 1.4.15; Copyright (C) 2013 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

gpg: key xxxxxxxx: duplicated user ID detected - merged
Secret key is available.

gpg: checking the trustdb
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
pub  4096R/xxxxxxxx  created: 2014-02-20  expires: never       usage: SC
                     trust: ultimate      validity: ultimate
sub  4096R/xxxxxxxx  created: 2014-02-20  expires: never       usage: E
[ultimate] (1). King George \xe2\xa3\x20<[email protected]>

gpg> uid

pub  4096R/xxxxxxxx  created: 2014-02-20  expires: never       usage: SC
                     trust: ultimate      validity: ultimate
sub  4096R/xxxxxxxx  created: 2014-02-20  expires: never       usage: E
[ultimate] (1). King George \xe2\xa3\x20<[email protected]>

gpg> adduid
Real name: King George Ⅳ      ### I type this.
Email address: [email protected]
Comment:
You are using the `utf-8' character set.
You selected this USER-ID:
    "King George � <[email protected]>"    ### Terminal notes corruption.

Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? O

You need a passphrase to unlock the secret key for
user: "King George \xe2\xa3\x20<[email protected]>"
4096-bit RSA key, ID xxxxxxxx, created 2014-02-20


pub  4096R/xxxxxxxx  created: 2014-02-20  expires: never       usage: SC
                     trust: ultimate      validity: ultimate
sub  4096R/xxxxxxxx  created: 2014-02-20  expires: never       usage: E
[ultimate] (1)  King George \xe2\xa3\x20<[email protected]>
[ultimate] (2). King George \xe2\xa3\x20<[email protected]>  ### That's not correct UTF-8.
  • 我的终端设置为使用UTF-8。
  • LANG=en_US.UTF-8

注意底部:UTF-8 序列不正确,但很接近!中间应该存在的三字节序列的一个八位字节丢失了。我怀疑我是否能做任何事情来删除中间的八位字节,那么这里发生了什么?

相关内容