diff options
author | Damien Miller <djm@mindrot.org> | 2019-11-01 03:34:49 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-11-01 03:35:34 +0100 |
commit | 764d51e04460ec0da12e05e4777bc90c116accb9 (patch) | |
tree | 7bd6cd697ffcf62cea723059bebd1968cef8cb32 /ssh-sk.c | |
parent | upstream: remove duplicate PUBKEY_DEFAULT_PK_ALG on !WITH_OPENSSL path (diff) | |
download | openssh-764d51e04460ec0da12e05e4777bc90c116accb9.tar.xz openssh-764d51e04460ec0da12e05e4777bc90c116accb9.zip |
autoconf pieces for U2F support
Mostly following existing logic for PKCS#11 - turning off support
when either libcrypto or dlopen(3) are unavailable.
Diffstat (limited to 'ssh-sk.c')
-rw-r--r-- | ssh-sk.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -19,6 +19,8 @@ #include "includes.h" +#ifdef ENABLE_SK + #include <dlfcn.h> #include <stddef.h> #include <stdint.h> @@ -375,3 +377,4 @@ sshsk_ecdsa_sign(const char *provider_path, const struct sshkey *key, sshbuf_free(inner_sig); return r; } +#endif /* ENABLE_SK */ |