Home | History | Annotate | Download | only in openssh

Lines Matching refs:comment

102 	char *comment = NULL;
105 public = key_load_public(filename, &comment);
111 fprintf(stderr, "Identity removed: %s (%s)\n", filename, comment);
117 xfree(comment);
145 char *comment = NULL;
178 private = key_parse_private(&keyblob, filename, "", &comment);
179 if (comment == NULL)
180 comment = xstrdup(filename);
188 comment);
193 xfree(comment);
198 &comment);
203 "Bad passphrase, try again for %.200s: ", comment);
208 if (ssh_add_identity_constrained(ac, private, comment, lifetime,
210 fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
244 if (!ssh_add_identity_constrained(ac, private, comment,
257 xfree(comment);
290 char *comment, *fp;
295 for (key = ssh_get_first_identity(ac, &comment, version);
297 key = ssh_get_next_identity(ac, &comment, version)) {
303 key_size(key), fp, comment, key_type(key));
308 fprintf(stdout, " %s\n", comment);
311 xfree(comment);