| 927 | } |
| 928 | |
| 929 | static char *get_ssh_key_id(void) |
| 930 | { |
| 931 | char *signing_key = get_signing_key(); |
| 932 | char *key_id = get_ssh_key_fingerprint(signing_key); |
| 933 | free(signing_key); |
| 934 | return key_id; |
| 935 | } |
| 936 | |
| 937 | /* Returns a textual but unique representation of the signing key */ |
| 938 | char *get_signing_key_id(void) |
nothing calls this directly
no test coverage detected