Lines Matching defs:sig
281 unsigned char *sig = NULL;
321 if (lu->sig == EVP_PKEY_RSA_PSS) {
343 sig = OPENSSL_malloc(siglen);
344 if (sig == NULL
345 || EVP_DigestSignFinal(mctx, sig, &siglen) <= 0) {
358 sig = OPENSSL_malloc(siglen);
359 if (sig == NULL
360 || EVP_DigestSign(mctx, sig, &siglen, hdata, hdatalen) <= 0) {
368 int pktype = lu->sig;
373 BUF_reverse(sig, NULL, siglen);
377 if (!WPACKET_sub_memcpy_u16(pkt, sig, siglen)) {
388 OPENSSL_free(sig);
392 OPENSSL_free(sig);
1560 * Prior to TLSv1.3 sig algs allowed any curve to be used. TLSv1.3 is
1561 * more restrictive so check that our sig algs are consistent with this