diff options
Diffstat (limited to 'agent/agent.h')
-rw-r--r-- | agent/agent.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/agent/agent.h b/agent/agent.h index eb819a0ff..90d8f5c73 100644 --- a/agent/agent.h +++ b/agent/agent.h @@ -245,9 +245,12 @@ struct server_control_s /* Information on the currently used digest (for signing commands). */ struct { + char *data; /* NULL or malloced data of length VALUELEN. If + this is set The other fields are ignored. Used + for PureEdDSA. */ + int valuelen; int algo; unsigned char value[MAX_DIGEST_LEN]; - int valuelen; int raw_value: 1; } digest; unsigned char keygrip[20]; |