diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-10-31 22:15:14 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-10-31 23:46:08 +0100 |
commit | 02bb0768a937e50bbb236efc2bbdddb1991b1c85 (patch) | |
tree | d0a182540b8034345b20a49a09cbf90b234cad1c /pathnames.h | |
parent | upstream: Protocol documentation for U2F/FIDO keys in OpenSSH (diff) | |
download | openssh-02bb0768a937e50bbb236efc2bbdddb1991b1c85.tar.xz openssh-02bb0768a937e50bbb236efc2bbdddb1991b1c85.zip |
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 @@ -/* $OpenBSD: pathnames.h,v 1.28 2018/02/23 15:58:37 markus Exp $ */ +/* $OpenBSD: pathnames.h,v 1.29 2019/10/31 21:15:14 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -77,6 +77,7 @@ #define _PATH_SSH_CLIENT_ID_RSA _PATH_SSH_USER_DIR "/id_rsa" #define _PATH_SSH_CLIENT_ID_ED25519 _PATH_SSH_USER_DIR "/id_ed25519" #define _PATH_SSH_CLIENT_ID_XMSS _PATH_SSH_USER_DIR "/id_xmss" +#define _PATH_SSH_CLIENT_ID_ECDSA_SK _PATH_SSH_USER_DIR "/id_ecdsa_sk" /* * Configuration file in user's home directory. This file need not be |