diff --git a/osslsigncode.c b/osslsigncode.c index cbbb7de..67827a0 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -1079,6 +1079,16 @@ static int add_timestamp(PKCS7 *sig, char *url, char *proxy, int rfc3161, if (!url) return 1; /* FAILED */ + + /* Encode timestamp request */ + if (rfc3161) { + bout = encode_rfc3161_request(sig, md); + } else { + bout = encode_authenticode_request(sig); + } + if (!bout) + return 1; /* FAILED */ + /* Start a libcurl easy session and set options for a curl easy handle */ curl = curl_easy_init(); if (proxy) { @@ -1128,14 +1138,6 @@ static int add_timestamp(PKCS7 *sig, char *url, char *proxy, int rfc3161, printf("CURL failure: %s %s\n", curl_easy_strerror(res), url); } - /* Encode timestamp request */ - if (rfc3161) { - bout = encode_rfc3161_request(sig, md); - } else { - bout = encode_authenticode_request(sig); - } - if (!bout) - return 1; /* FAILED */ len = BIO_get_mem_data(bout, &p); res = curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, len); if (res != CURLE_OK) {