-
Notifications
You must be signed in to change notification settings - Fork 70
PGP MTLS Batch Upload #189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
lib/Api/BatchUploadApi.php
Outdated
* @throws ApiException | ||
*/ | ||
public function uploadBatchWithP12( | ||
$inputFile, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change var name
} | ||
} | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add a EOF
//also works without converting to string | ||
return (string)$encrypted->to_bytes(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add EOF
|
||
// CA cert for server validation | ||
if ($caCertPath) { | ||
print_r("Using custom CA cert path: $caCertPath\n"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this
}else{ | ||
$defaultCaCertPath = __DIR__ . '/../../../ssl/cacert.pem'; | ||
$defaultCa = file_exists($defaultCaCertPath) ? file_get_contents($defaultCaCertPath) : ''; | ||
curl_setopt($ch, CURLOPT_CAINFO_BLOB, $defaultCa); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use the dir option
No description provided.