Add support for distinct certificate chains per key type and per SSL
[openssl.git] / ssl / t1_lib.c
index 7150171c1da0dd4642b480a65a48c7cbe14756f0..e4299d89ea92abfb85d1b67136466592a16901b8 100644 (file)
@@ -2279,6 +2279,8 @@ static int tls12_find_nid(int id, tls12_lookup *table, size_t tlen)
 int tls12_get_sigandhash(unsigned char *p, const EVP_PKEY *pk, const EVP_MD *md)
        {
        int sig_id, md_id;
+       if (!md)
+               return 0;
        md_id = tls12_find_id(EVP_MD_type(md), tls12_md,
                                sizeof(tls12_md)/sizeof(tls12_lookup));
        if (md_id == -1)