diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-06-12 11:09:26 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-06-12 11:09:26 +0000 |
commit | 586f634fab1170bdb318c3f7055fdd0cc94222a7 (patch) | |
tree | c1919d8086e1d5770f8297e619938e2202c2133e /usr.sbin/acme-client/parse.h | |
parent | c689f5f82e4105fe8733cec4b4905a1609eff328 (diff) |
use acme-client to sign certificated with ecdsa keys
diff from Renaud Allard <renaud@allard.it>, ok to get in from florian@
Diffstat (limited to 'usr.sbin/acme-client/parse.h')
-rw-r--r-- | usr.sbin/acme-client/parse.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/acme-client/parse.h b/usr.sbin/acme-client/parse.h index 20a1de581bf..78405590568 100644 --- a/usr.sbin/acme-client/parse.h +++ b/usr.sbin/acme-client/parse.h @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.h,v 1.10 2019/06/08 07:52:55 florian Exp $ */ +/* $OpenBSD: parse.h,v 1.11 2019/06/12 11:09:25 gilles Exp $ */ /* * Copyright (c) 2016 Sebastian Benoit <benno@openbsd.org> * @@ -38,6 +38,7 @@ struct domain_c { TAILQ_ENTRY(domain_c) entry; TAILQ_HEAD(, altname_c) altname_list; int altname_count; + int keytype; char *domain; char *key; char *cert; |