diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2018-09-12 01:31:31 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2018-09-12 01:31:31 +0000 |
commit | aeb70d8b33520de1a434028b62e3894ee2a1ec43 (patch) | |
tree | 3579fc5fa8e95d43f4662264d4c29a951b936bbc /usr.bin/ssh/sshkey.h | |
parent | fcf2b68008d385df9fa60c26e175a47dc1c204c5 (diff) |
add cert->signature_type field and keep it in sync with certificate
signature wrt loading and certification operations; ok markus@
Diffstat (limited to 'usr.bin/ssh/sshkey.h')
-rw-r--r-- | usr.bin/ssh/sshkey.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshkey.h b/usr.bin/ssh/sshkey.h index 75b36dc4742..1acf7f7cc38 100644 --- a/usr.bin/ssh/sshkey.h +++ b/usr.bin/ssh/sshkey.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sshkey.h,v 1.26 2018/07/03 13:20:25 djm Exp $ */ +/* $OpenBSD: sshkey.h,v 1.27 2018/09/12 01:31:30 djm Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -96,6 +96,7 @@ struct sshkey_cert { struct sshbuf *critical; struct sshbuf *extensions; struct sshkey *signature_key; + char *signature_type; }; /* XXX opaquify? */ |