I have googled to search answer for these problem.but I'm not able to find proper solution for my question as many answer was specific to problem related.
when I tried to create digital signature of content using XMLSecurityKey
and openssl_sign
I'm getting warning and signature was not created.
openssl_sign is throwing error as :
Warning: openssl_sign(): supplied key param cannot be coerced into a private key in /var/www/git/ta_client/accessService.php on line 105
And my code is:
public function _signMessage($encData, $configValues)
{
$decode = 'decode';
$token = $encData['token'];
$cipherValue = $encData['cipherValue'];
$clientId = $encData['ClientId'];
$grpCustNum = $encData['grpCustNum'];
// Sign the concatenated string
$toSign = $token . $cipherValue . $clientId . $grpCustNum;
// Encrypt the token with the public key from vendor
$cipher = new XMLSecurityKey(XMLSecurityKey::RSA_SHA1, array('type'=>'private')); // Reference to XMLSecLibs
$cipher->loadKey($configValues['privkey'], true);
try{
if (! openssl_sign ($toSign, $signature, $cipher->key, OPENSSL_ALGO_MD5)) {
openssl_error_string();
throw new Exception();
}
}catch(Exception $e){
print_r($e);
die;
}
// append the decode values
$encData['sign'] = urlencode(base64_encode($signature)) . $decode;
$encData['token'] = urlencode($token) . $decode;
$encData['cipherValue'] = urlencode($cipherValue) . $decode;
return $encData;
}
And my $configValues['privkey']
is in xml format.Any suggestions?
openssl doesn't support XML format. My recommendation would be to use phpseclib. ie.
I'm assuming the private key you're trying to load is in this format?:
The same error will be generated if you are using a malformed private key or attempting to sign with the public key...
This error message has several causes and can be extremely misleading!
Of course, this error message will appear if your PEM file is somehow corrupt or does not contain a private key, obviously.
But this error message also comes when the file can't be read at all, e.g. because there are no permissions. Unfortunately, the message does not mention that.