diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-10-31 21:15:14 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-11-01 09:46:08 +1100 |
commit | 02bb0768a937e50bbb236efc2bbdddb1991b1c85 (patch) | |
tree | d0a182540b8034345b20a49a09cbf90b234cad1c /pathnames.h | |
parent | 57ecc10628b04c384cbba2fbc87d38b74cd1199d (diff) |
upstream: Initial infrastructure for U2F/FIDO support
Key library support: including allocation, marshalling public/private
keys and certificates, signature validation.
feedback & ok markus@
OpenBSD-Commit-ID: a17615ba15e0f7932ac4360cb18fc9a9544e68c7
Diffstat (limited to 'pathnames.h')
-rw-r--r-- | pathnames.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pathnames.h b/pathnames.h index cb44caa4d..2e0c7b15b 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.29 2019/10/31 21:15:14 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -77,6 +77,7 @@ | |||
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" | ||
80 | 81 | ||
81 | /* | 82 | /* |
82 | * Configuration file in user's home directory. This file need not be | 83 | * Configuration file in user's home directory. This file need not be |