Returns a textual but unique representation of the signing key */
| 936 | |
| 937 | /* Returns a textual but unique representation of the signing key */ |
| 938 | char *get_signing_key_id(void) |
| 939 | { |
| 940 | gpg_interface_lazy_init(); |
| 941 | |
| 942 | if (use_format->get_key_id) { |
| 943 | return use_format->get_key_id(); |
| 944 | } |
| 945 | |
| 946 | /* GPG/GPGSM only store a key id on this variable */ |
| 947 | return get_signing_key(); |
| 948 | } |
| 949 | |
| 950 | char *get_signing_key(void) |
| 951 | { |
no test coverage detected