MCPcopy Create free account
hub / github.com/git/git / get_signing_key_id

Function get_signing_key_id

gpg-interface.c:938–948  ·  view source on GitHub ↗

Returns a textual but unique representation of the signing key */

Source from the content-addressed store, hash-verified

936
937/* Returns a textual but unique representation of the signing key */
938char *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
950char *get_signing_key(void)
951{

Callers 1

generate_push_certFunction · 0.85

Calls 2

gpg_interface_lazy_initFunction · 0.85
get_signing_keyFunction · 0.85

Tested by

no test coverage detected