Lines Matching refs:blob
20 CURLOPT_SSLKEY_BLOB - private key for client cert from memory blob
28 struct curl_blob *blob);
37 If the blob is initialized with the flags member of struct curl_blob set to
65 struct curl_blob blob;
67 blob.data = certificateData;
68 blob.len = filesize;
69 blob.flags = CURL_BLOB_COPY;
70 curl_easy_setopt(curl, CURLOPT_SSLCERT_BLOB, &blob);
73 blob.data = privateKeyData;
74 blob.len = privateKeySize;
75 curl_easy_setopt(curl, CURLOPT_SSLKEY_BLOB, &blob);