Delphi でいくつかのデータを暗号化し、それを GET 経由で PHP スクリプトに送信します。PHP スクリプトはそれを復号化し、結果を MySQL データベースに追加します。問題は、データの末尾に "�" または複数の "���" が追加される場合があることです。コードは次のとおりです。
const
URL = 'http://127.0.0.1/script.php?data=';
PACK_SEPARATOR = '|';
KeySize = 32;
BlockSize = 16;
function aes_encrypt(const Data: string; const Key: string; const IV: string) : string;
var
Cipher : TDCP_rijndael;
tempData, tempKey, tempIV : string;
begin
tempKey := PadWithZeros(Key,KeySize);
tempIV := PadWithZeros(IV,BlockSize);
tempData := PadWithZeros(Data,BlockSize);
Cipher := TDCP_rijndael.Create(nil);
if Length(Key) <= 16 then
Cipher.Init(tempKey[1],128,@tempIV[1])
else if Length(Key) <= 24 then
Cipher.Init(tempKey[1],192,@tempIV[1])
else
Cipher.Init(tempKey[1],256,@tempIV[1]);
Cipher.EncryptCBC(tempData[1],tempData[1],Length(tempData));
Cipher.Free;
FillChar(tempKey[1],Length(tempKey),0);
Result := Base64EncodeStr(tempData);
end;
function PadWithZeros(const str : string; size : integer) : string;
var
origsize, i : integer;
begin
Result := str;
origsize := Length(Result);
if ((origsize mod size) <> 0) or (origsize = 0) then
begin
SetLength(Result,((origsize div size)+1)*size);
for i := origsize+1 to Length(Result) do
Result[i] := #0;
end;
end;
function HTTPEncode(const AStr: String): String;
const
NoConversion = ['A'..'Z','a'..'z','*','@','.','_','-'];
var
Sp, Rp: PChar;
begin
SetLength(Result, Length(AStr) * 3);
Sp := PChar(AStr);
Rp := PChar(Result);
while Sp^ <> #0 do
begin
if Sp^ in NoConversion then
Rp^ := Sp^
else
if Sp^ = ' ' then
Rp^ := '+'
else
begin
FormatBuf(Rp^, 3, '%%%.2x', 6, [Ord(Sp^)]);
Inc(Rp,2);
end;
Inc(Rp);
Inc(Sp);
end;
SetLength(Result, Rp - PChar(Result));
end;
packedData := Memo1.Lines.Text + PACK_SEPARATOR + Edit1.Text + PACK_SEPARATOR + Edit2.Text;
encryptedData := aes_encrypt(packedData, KEY, IV);
encryptedData := HTTPEncode(encryptedData);
serverMsg := DownloadFile(URL+encryptedData);
暗号化前の「packedData」の長さは約 133 です。暗号化後は約 200 であるため、一部のサーバーの GET データ制限を破ることはありません。
今PHPコード:
function aes_decrypt($dataToDecrypt, $key, $iv)
{
$decoded = base64_decode($dataToDecrypt);
$decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $decoded, MCRYPT_MODE_CBC, $iv);
return $decrypted;
}
$packedData = aes_decrypt($_GET['data'], KEY, IV);
$unpacked = explode(PACK_SEPARATOR, $packedData);
$smth1 = $unpacked[0];
$smth2 = $unpacked[1];
$smth3 = $unpacked[2];
$params = array(':thing' => $somevar, ':data1' => $smth1, ':data2' => $smth2, ':data3' => $smth3);
$query = $pdo->prepare('UPDATE one_table SET somedata1 = :data1 , somedata2 = :data2 , somedata3 = :data3 WHERE something = :thing LIMIT 1');
$success = $query->execute($params);
私はこの問題を解決するために何時間も費やしています。少し前に、暗号化されたバイナリ データを含む PHP 出力に問題がありました。問題は aes_decrypt 関数だったので、上記のように変更しました。今のところどこに問題があるかわかりません。Delphi 暗号化、PHP 復号化、または GET 経由でデータを送信しますか? ご協力いただきありがとうございます。