Lines Matching refs:blob
20 CURLOPT_PROXY_SSLKEY_BLOB - private key for proxy cert from memory blob
28 struct curl_blob *blob);
38 If the blob is initialized with the flags member of struct curl_blob set to
63 struct curl_blob blob;
66 blob.data = certificateData;
67 blob.len = filesize;
68 blob.flags = CURL_BLOB_COPY;
69 curl_easy_setopt(curl, CURLOPT_PROXY_SSLCERT_BLOB, &blob);
72 blob.data = privateKeyData;
73 blob.len = privateKeySize;
74 curl_easy_setopt(curl, CURLOPT_PROXY_SSLKEY_BLOB, &blob);