1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-18 19:41:01 -05:00

Permit configuring RSA signature types in certificates.

As distinct from the type of signature generated by the SSH server
itself from the host key, this lets you exclude (and by default does
exclude) the old "ssh-rsa" SHA-1 signature type from the signature of
the CA on the certificate.
This commit is contained in:
Simon Tatham
2022-05-02 10:18:16 +01:00
parent e34e0220ab
commit dc7ba12253
12 changed files with 215 additions and 47 deletions

View File

@ -6,6 +6,8 @@
#ifndef PUTTY_STORAGE_H
#define PUTTY_STORAGE_H
#include "defs.h"
/* ----------------------------------------------------------------------
* Functions to save and restore PuTTY sessions. Note that this is
* only the low-level code to do the reading and writing. The
@ -103,6 +105,7 @@ struct host_ca {
strbuf *ca_public_key;
char **hostname_wildcards;
size_t n_hostname_wildcards;
ca_options opts;
};
host_ca_enum *enum_host_ca_start(void);