im failing to decrypt the response from the whatsapp flow, and im using php, codeigniter 4 with the phpseclib3 library, and below is my sample code:
private function decryptRequest($body, $privatePem)
{
$encryptedAesKey = base64_decode($body['encrypted_aes_key']);
$encryptedFlowData = base64_decode($body['encrypted_flow_data']);
$initialVector = base64_decode($body['initial_vector']);
$rsa = RSA::load($privatePem)
->withPadding(RSA::ENCRYPTION_OAEP)
->withHash('sha256')
->withMGFHash('sha256');
$decryptedAesKey = $rsa->decrypt($encryptedAesKey);
if (!$decryptedAesKey) {
throw new Exception('Decryption of AES key failed.');
}
$aes = new AES('gcm');
$aes->setKey($decryptedAesKey);
$aes->setNonce($initialVector);
$decrypted = $aes->decrypt($encryptedFlowData);
if (!$decrypted) {
throw new Exception('Decryption of flow data failed.');
}
return [
'decryptedBody' => json_decode($decrypted, true),
'aesKeyBuffer' => $decryptedAesKey,
'initialVectorBuffer' => $initialVector,
];
}
and im getting the Ciphertext representative too long error on this line:
$decryptedAesKey = $rsa->decrypt($encryptedAesKey);
I have tried to refer to the docementation here https://developers.facebook.com/docs/whatsapp/cloud-api/reference/whatsapp-business-encryption
I have some questions to help debug:
There's a full code example in PHP for decryption here. You seem to be missing a few steps after the one that's currently failing, so please refer to the example https://developers.facebook.com/docs/whatsapp/flows/guides/implementingyourflowendpoint#php-slim-example