summaryrefslogtreecommitdiff
path: root/pathnames.h
diff options
context:
space:
mode:
Diffstat (limited to 'pathnames.h')
-rw-r--r--pathnames.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/pathnames.h b/pathnames.h
index cb44caa4d..f7ca5a75a 100644
--- a/pathnames.h
+++ b/pathnames.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: pathnames.h,v 1.28 2018/02/23 15:58:37 markus Exp $ */ 1/* $OpenBSD: pathnames.h,v 1.31 2019/11/12 19:33:08 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -77,6 +77,8 @@
77#define _PATH_SSH_CLIENT_ID_RSA _PATH_SSH_USER_DIR "/id_rsa" 77#define _PATH_SSH_CLIENT_ID_RSA _PATH_SSH_USER_DIR "/id_rsa"
78#define _PATH_SSH_CLIENT_ID_ED25519 _PATH_SSH_USER_DIR "/id_ed25519" 78#define _PATH_SSH_CLIENT_ID_ED25519 _PATH_SSH_USER_DIR "/id_ed25519"
79#define _PATH_SSH_CLIENT_ID_XMSS _PATH_SSH_USER_DIR "/id_xmss" 79#define _PATH_SSH_CLIENT_ID_XMSS _PATH_SSH_USER_DIR "/id_xmss"
80#define _PATH_SSH_CLIENT_ID_ECDSA_SK _PATH_SSH_USER_DIR "/id_ecdsa_sk"
81#define _PATH_SSH_CLIENT_ID_ED25519_SK _PATH_SSH_USER_DIR "/id_ed25519_sk"
80 82
81/* 83/*
82 * Configuration file in user's home directory. This file need not be 84 * Configuration file in user's home directory. This file need not be
@@ -132,6 +134,11 @@
132#define _PATH_SSH_PKCS11_HELPER "/usr/libexec/ssh-pkcs11-helper" 134#define _PATH_SSH_PKCS11_HELPER "/usr/libexec/ssh-pkcs11-helper"
133#endif 135#endif
134 136
137/* Location of ssh-sk-helper to support keys in security keys */
138#ifndef _PATH_SSH_SK_HELPER
139#define _PATH_SSH_SK_HELPER "/usr/libexec/ssh-sk-helper"
140#endif
141
135/* xauth for X11 forwarding */ 142/* xauth for X11 forwarding */
136#ifndef _PATH_XAUTH 143#ifndef _PATH_XAUTH
137#define _PATH_XAUTH "/usr/X11R6/bin/xauth" 144#define _PATH_XAUTH "/usr/X11R6/bin/xauth"