Lines Matching refs:publickey

17 	const char *publickey,
137 if (c->publickey) { in ssh_key_free()
139 size_t key_len = strlen(c->publickey); in ssh_key_free()
140 git__memzero(c->publickey, key_len); in ssh_key_free()
141 git__free(c->publickey); in ssh_key_free()
162 if (c->publickey) { in ssh_custom_free()
164 size_t key_len = strlen(c->publickey); in ssh_custom_free()
165 git__memzero(c->publickey, key_len); in ssh_custom_free()
166 git__free(c->publickey); in ssh_custom_free()
187 const char *publickey, in git_credential_ssh_key_new() argument
194 publickey, in git_credential_ssh_key_new()
203 const char *publickey, in git_credential_ssh_key_memory_new() argument
211 publickey, in git_credential_ssh_key_memory_new()
218 GIT_UNUSED(publickey); in git_credential_ssh_key_memory_new()
231 const char *publickey, in git_credential_ssh_key_type_new() argument
254 if (publickey) { in git_credential_ssh_key_type_new()
255 c->publickey = git__strdup(publickey); in git_credential_ssh_key_type_new()
256 GIT_ERROR_CHECK_ALLOC(c->publickey); in git_credential_ssh_key_type_new()
320 const char *publickey, in git_credential_ssh_custom_new() argument
340 c->publickey = git__malloc(publickey_len); in git_credential_ssh_custom_new()
341 GIT_ERROR_CHECK_ALLOC(c->publickey); in git_credential_ssh_custom_new()
343 memcpy(c->publickey, publickey, publickey_len); in git_credential_ssh_custom_new()
434 const char *publickey, in git_cred_ssh_key_new() argument
439 publickey, privatekey, passphrase); in git_cred_ssh_key_new()
445 const char *publickey, in git_cred_ssh_key_memory_new() argument
450 publickey, privatekey, passphrase); in git_cred_ssh_key_memory_new()
473 const char *publickey, in git_cred_ssh_custom_new() argument
479 publickey, publickey_len, sign_callback, payload); in git_cred_ssh_custom_new()