Searched refs:fInCert (Results 1 - 3 of 3) sorted by relevance
/third_party/curl/tests/libtest/ |
H A D | lib678.c | 35 FILE *fInCert = fopen(filename, "rb"); in loadfile() local 37 if(fInCert) { in loadfile() 39 bool continue_reading = fseek(fInCert, 0, SEEK_END) == 0; in loadfile() 41 cert_tell = ftell(fInCert); in loadfile() 47 continue_reading = fseek(fInCert, 0, SEEK_SET) == 0; in loadfile() 51 ((int)fread(data, datasize, 1, fInCert) != 1)) in loadfile() 53 fclose(fInCert); in loadfile()
|
/third_party/curl/src/ |
H A D | tool_operate.c | 1651 FILE *fInCert = fopen(config->cert + 8, "rb"); in single_transfer() local 1654 bool continue_reading = fInCert != NULL; in single_transfer() 1656 continue_reading = fseek(fInCert, 0, SEEK_END) == 0; in single_transfer() 1658 filesize = ftell(fInCert); in single_transfer() 1662 continue_reading = fseek(fInCert, 0, SEEK_SET) == 0; in single_transfer() 1666 ((int)fread(certdata, (size_t)filesize, 1, fInCert) != 1)) in single_transfer() 1668 if(fInCert) in single_transfer() 1669 fclose(fInCert); in single_transfer() 1694 FILE *fInCert = fopen(config->key + 8, "rb"); in single_transfer() local 1697 bool continue_reading = fInCert ! in single_transfer() [all...] |
/third_party/curl/lib/vtls/ |
H A D | schannel.c | 554 FILE *fInCert = NULL; in schannel_acquire_credential_handle() local 573 fInCert = fopen(data->set.ssl.primary.clientcert, "rb"); in schannel_acquire_credential_handle() 575 if(result && !fInCert) { in schannel_acquire_credential_handle() 584 if((fInCert || blob) && (data->set.ssl.cert_type) && in schannel_acquire_credential_handle() 593 if(fInCert || blob) { in schannel_acquire_credential_handle() 605 if(fInCert) { in schannel_acquire_credential_handle() 607 bool continue_reading = fseek(fInCert, 0, SEEK_END) == 0; in schannel_acquire_credential_handle() 609 cert_tell = ftell(fInCert); in schannel_acquire_credential_handle() 615 continue_reading = fseek(fInCert, 0, SEEK_SET) == 0; in schannel_acquire_credential_handle() 619 ((int) fread(certdata, certsize, 1, fInCert) ! in schannel_acquire_credential_handle() [all...] |
Completed in 7 milliseconds