Add streaming encryption/decryption API to OpenSSL extension (openssl_encrypt_init / openssl_encrypt_update / openssl_encrypt_final)
オープン
@bukka がすでに取り組んでいます。
2025年8月22日 から。
Extension: openssl
Feature
Status: Requires RFC
- 主要言語
- C
- スター
- 40.4k
- フォーク
- 8.1k
- 平均マージ
- 2日 13時間
- マージ済み PR(30日)
- 96
説明
Description
Currently, the OpenSSL extension in PHP provides openssl_encrypt() and openssl_decrypt(), which require the entire data buffer in memory for AES-128-GCM, AES-256-GCM... This makes it impractical to process very large files (e.g. 100 MB, 1 GB, 1 TB) because PHP will try to load the entire content into memory before encrypting/decrypting.
Proposal
Introduce a streaming API for encryption/decryption, similar to how hash_init(), hash_update(), and hash_final() work.
For example for encryption:
$res = openssl_encrypt_init('aes-256-gcm', $key, OPENSSL_RAW_DATA, $iv, $tag_length);
openssl_encrypt_update($ctx, $aad);
while (!feof($fp_in)) {
$chunk = fread($fp_in, 1048576); // 1 MB
$enc = openssl_encrypt_update($res, $chunk);
fwrite($fp_out, $enc);
}
$enc = openssl_encrypt_final($res, $tag);
fwrite($fp_out, $enc);
And for decryption:
$res = openssl_decrypt_init("aes-256-gcm", $key, OPENSSL_RAW_DATA, $iv, $tag);
openssl_decrypt_update($ctx, $aad);
while (!feof($fp_in)) {
$chunk = fread($fp_in, 1048576);
$dec = openssl_decrypt_update($res, $chunk);
fwrite($fp_out, $dec);
}
$dec = openssl_decrypt_final($res);
fwrite($fp_out, $dec);
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
評価
この issue はまだ評価されていません。