diff options
author | djm@openbsd.org <djm@openbsd.org> | 2017-06-13 13:22:15 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-06-13 14:15:08 +0200 |
commit | 6026f48dfca78b713e4a7f681ffa42a0afe0929e (patch) | |
tree | bf6409da78b7eb44ca7cde34d82028ab61a2bb9b /sshkey.h | |
parent | portability for sftp globbed ls sort by mtime (diff) | |
download | openssh-6026f48dfca78b713e4a7f681ffa42a0afe0929e.tar.xz openssh-6026f48dfca78b713e4a7f681ffa42a0afe0929e.zip |
upstream commit
missing prototype.
Upstream-ID: f443d2be9910fd2165a0667956d03343c46f66c9
Diffstat (limited to 'sshkey.h')
-rw-r--r-- | sshkey.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sshkey.h,v 1.18 2017/05/07 23:15:59 djm Exp $ */ +/* $OpenBSD: sshkey.h,v 1.19 2017/06/13 11:22:15 djm Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -124,6 +124,7 @@ int sshkey_fingerprint_raw(const struct sshkey *k, int, u_char **retp, size_t *lenp); const char *sshkey_type(const struct sshkey *); const char *sshkey_cert_type(const struct sshkey *); +int sshkey_format_text(const struct sshkey *, struct sshbuf *); int sshkey_write(const struct sshkey *, FILE *); int sshkey_read(struct sshkey *, char **); u_int sshkey_size(const struct sshkey *); |