summaryrefslogtreecommitdiff
path: root/krl.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2015-01-13 19:04:35 +0000
committerDamien Miller <djm@mindrot.org>2015-01-14 20:32:42 +1100
commite7fd952f4ea01f09ceb068721a5431ac2fd416ed (patch)
tree32cd522bce3a9b74e1c042100beb8621ff564f3a /krl.h
parent76c0480a85675f03a1376167cb686abed01a3583 (diff)
upstream commit
sync changes from libopenssh; prepared by markus@ mostly debug output tweaks, a couple of error return value changes and some other minor stuff
Diffstat (limited to 'krl.h')
-rw-r--r--krl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/krl.h b/krl.h
index c98cc139d..4e12befc3 100644
--- a/krl.h
+++ b/krl.h
@@ -14,7 +14,7 @@
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */ 15 */
16 16
17/* $OpenBSD: krl.h,v 1.3 2014/12/04 01:49:59 djm Exp $ */ 17/* $OpenBSD: krl.h,v 1.4 2015/01/13 19:06:49 djm Exp $ */
18 18
19#ifndef _KRL_H 19#ifndef _KRL_H
20#define _KRL_H 20#define _KRL_H
@@ -57,7 +57,7 @@ int ssh_krl_revoke_key(struct ssh_krl *krl, const struct sshkey *key);
57int ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf, 57int ssh_krl_to_blob(struct ssh_krl *krl, struct sshbuf *buf,
58 const struct sshkey **sign_keys, u_int nsign_keys); 58 const struct sshkey **sign_keys, u_int nsign_keys);
59int ssh_krl_from_blob(struct sshbuf *buf, struct ssh_krl **krlp, 59int ssh_krl_from_blob(struct sshbuf *buf, struct ssh_krl **krlp,
60 const struct sshkey **sign_ca_keys, u_int nsign_ca_keys); 60 const struct sshkey **sign_ca_keys, size_t nsign_ca_keys);
61int ssh_krl_check_key(struct ssh_krl *krl, const struct sshkey *key); 61int ssh_krl_check_key(struct ssh_krl *krl, const struct sshkey *key);
62int ssh_krl_file_contains_key(const char *path, const struct sshkey *key); 62int ssh_krl_file_contains_key(const char *path, const struct sshkey *key);
63 63