Skip to content

Commit 27fff01

Browse files
authored
Merge pull request #451 from h2o/kazuho/openssl-async-default-off
[async] turn off by default
2 parents a4c3e53 + d1905bd commit 27fff01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ static int verify_sign(void *verify_ctx, uint16_t algo, ptls_iovec_t data, ptls_
12801280

12811281
int ptls_openssl_init_sign_certificate(ptls_openssl_sign_certificate_t *self, EVP_PKEY *key)
12821282
{
1283-
*self = (ptls_openssl_sign_certificate_t){.super = {sign_certificate}, .async = 1};
1283+
*self = (ptls_openssl_sign_certificate_t){.super = {sign_certificate}, .async = 0 /* libssl has it off by default too */};
12841284

12851285
if ((self->schemes = lookup_signature_schemes(key)) == NULL)
12861286
return PTLS_ERROR_INCOMPATIBLE_KEY;

0 commit comments

Comments
 (0)