diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2010-03-15 19:40:03 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2010-03-15 19:40:03 +0000 |
commit | d4b2c7bf874cdea856ae4ce0cb5829408b826e69 (patch) | |
tree | dfbafaf6c4cabb1d16b81c0f598be5e0b9cdb21f /usr.bin/ssh/key.h | |
parent | 455e8dcce9b0b381da802c383bc89753e338c5cc (diff) |
also print certificate type (user or host) for ssh-keygen -L
ok djm kettenis
Diffstat (limited to 'usr.bin/ssh/key.h')
-rw-r--r-- | usr.bin/ssh/key.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/key.h b/usr.bin/ssh/key.h index 6a2e049af11..4f17777c088 100644 --- a/usr.bin/ssh/key.h +++ b/usr.bin/ssh/key.h @@ -1,4 +1,4 @@ -/* $OpenBSD: key.h,v 1.28 2010/02/26 20:29:54 djm Exp $ */ +/* $OpenBSD: key.h,v 1.29 2010/03/15 19:40:02 stevesk Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -82,6 +82,7 @@ int key_equal(const Key *, const Key *); char *key_fingerprint(Key *, enum fp_type, enum fp_rep); u_char *key_fingerprint_raw(Key *, enum fp_type, u_int *); const char *key_type(const Key *); +const char *key_cert_type(const Key *); int key_write(const Key *, FILE *); int key_read(Key *, char **); u_int key_size(const Key *); |