summaryrefslogtreecommitdiff
path: root/sshkey.h
diff options
context:
space:
mode:
Diffstat (limited to 'sshkey.h')
-rw-r--r--sshkey.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sshkey.h b/sshkey.h
index d96dcb8b0..21ac802dc 100644
--- a/sshkey.h
+++ b/sshkey.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshkey.h,v 1.41 2019/12/13 19:09:10 djm Exp $ */ 1/* $OpenBSD: sshkey.h,v 1.42 2019/12/13 19:11:14 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -52,7 +52,11 @@
52#define SSH_KEY_MAX_SIGN_DATA_SIZE (1 << 20) 52#define SSH_KEY_MAX_SIGN_DATA_SIZE (1 << 20)
53 53
54/* Version of protocol expected from ssh-sk-helper */ 54/* Version of protocol expected from ssh-sk-helper */
55#define SSH_SK_HELPER_VERSION 1 55#define SSH_SK_HELPER_VERSION 2
56
57/* ssh-sk-helper messages */
58#define SSH_SK_HELPER_SIGN 1
59#define SSH_SK_HELPER_ENROLL 2
56 60
57struct sshbuf; 61struct sshbuf;
58 62