web-base/core/Objects/AesStream.class.php

182 lines
4.5 KiB
PHP
Raw Normal View History

2021-11-11 14:25:26 +01:00
<?php
namespace Objects;
class AesStream {
private string $key;
private string $iv;
private $callback;
private ?string $outputFile;
private ?string $inputFile;
2022-02-20 16:53:26 +01:00
private int $offset;
private ?int $length;
//
private ?string $md5SumIn;
private ?string $sha1SumIn;
private ?string $md5SumOut;
private ?string $sha1SumOut;
2021-11-11 14:25:26 +01:00
public function __construct(string $key, string $iv) {
$this->key = $key;
$this->iv = $iv;
$this->inputFile = null;
$this->outputFile = null;
$this->callback = null;
2022-02-20 16:53:26 +01:00
$this->offset = 0;
$this->length = null;
$this->md5SumIn = null;
$this->sha1SumIn = null;
$this->md5SumOut = null;
$this->sha1SumOut = null;
2021-11-11 14:25:26 +01:00
if (!in_array(strlen($key), [16, 24, 32])) {
throw new \Exception("Invalid Key Size");
} else if (strlen($iv) !== 16) {
throw new \Exception("Invalid IV Size");
}
}
2021-12-08 16:53:43 +01:00
public function setInputFile(string $file) {
2021-11-11 14:25:26 +01:00
$this->inputFile = $file;
}
2021-12-08 16:53:43 +01:00
public function setOutput(callable $callback) {
2021-11-11 14:25:26 +01:00
$this->callback = $callback;
}
public function setOutputFile(string $file) {
$this->outputFile = $file;
}
public function start(): bool {
if (!$this->inputFile) {
return false;
}
$blockSize = 16;
2021-12-08 16:53:43 +01:00
$aesMode = $this->getCipherMode();
2021-11-11 14:25:26 +01:00
$outputHandle = null;
$inputHandle = fopen($this->inputFile, "rb");
if (!$inputHandle) {
return false;
}
if ($this->outputFile !== null) {
$outputHandle = fopen($this->outputFile, "wb");
if (!$outputHandle) {
2021-12-08 16:53:43 +01:00
fclose($inputHandle);
2021-11-11 14:25:26 +01:00
return false;
}
}
2021-12-08 16:53:43 +01:00
set_time_limit(0);
2022-02-20 16:53:26 +01:00
$md5ContextIn = hash_init("md5");
$sha1ContextIn = hash_init("sha1");
$md5ContextOut = hash_init("md5");
$sha1ContextOut = hash_init("sha1");
2021-12-08 16:53:43 +01:00
$ivCounter = $this->iv;
$modulo = \gmp_init("0x1" . str_repeat("00", $blockSize), 16);
2022-02-20 16:53:26 +01:00
$written = 0;
2021-12-08 16:53:43 +01:00
2021-11-11 14:25:26 +01:00
while (!feof($inputHandle)) {
2021-12-08 16:53:43 +01:00
$chunk = fread($inputHandle, 65536);
2021-11-11 14:25:26 +01:00
$chunkSize = strlen($chunk);
2021-12-08 16:53:43 +01:00
if ($chunkSize > 0) {
2022-02-20 16:53:26 +01:00
hash_update($md5ContextIn, $chunk);
hash_update($sha1ContextIn, $chunk);
2021-12-08 16:53:43 +01:00
$blockCount = intval(ceil($chunkSize / $blockSize));
$encrypted = openssl_encrypt($chunk, $aesMode, $this->key, OPENSSL_RAW_DATA | OPENSSL_NO_PADDING, $ivCounter);
2021-11-11 14:25:26 +01:00
2021-12-08 16:53:43 +01:00
$ivNumber = \gmp_init(bin2hex($ivCounter), 16);
$ivNumber = \gmp_add($ivNumber, $blockCount);
$ivNumber = \gmp_mod($ivNumber, $modulo);
$ivNumber = str_pad(\gmp_strval($ivNumber, 16), $blockSize * 2, "0", STR_PAD_LEFT);
$ivCounter = hex2bin($ivNumber);
2022-02-20 16:53:26 +01:00
// partial content
$skip = false;
if ($this->offset > 0 && $written < $this->offset) {
if ($written + $chunkSize >= $this->offset) {
$encrypted = substr($encrypted, $this->offset - $written);
} else {
$skip = true;
}
2021-11-11 14:25:26 +01:00
}
2022-02-20 16:53:26 +01:00
if ($this->length !== null) {
$notSkipped = max($written - $this->offset, 0);
if ($notSkipped + $chunkSize >= $this->length) {
$encrypted = substr($encrypted, 0, $this->length - $notSkipped);
}
}
if (!$skip) {
if ($this->callback !== null) {
call_user_func($this->callback, $encrypted);
}
if ($outputHandle !== null) {
fwrite($outputHandle, $encrypted);
}
hash_update($md5ContextOut, $encrypted);
hash_update($sha1ContextOut, $encrypted);
}
$written += $chunkSize;
if ($this->length !== null && $written - $this->offset >= $this->length) {
break;
2021-11-11 14:25:26 +01:00
}
}
}
fclose($inputHandle);
2022-02-20 16:53:26 +01:00
if ($outputHandle) {
fclose($outputHandle);
}
$this->md5SumIn = hash_final($md5ContextIn, false);
$this->sha1SumIn = hash_final($sha1ContextIn, false);
2021-11-11 14:25:26 +01:00
return true;
}
2021-12-08 16:53:43 +01:00
public function getCipherMode(): string {
$bitStrength = strlen($this->key) * 8;
return "aes-$bitStrength-ctr";
}
public function getKey(): string {
return $this->key;
}
public function getIV(): string {
return $this->iv;
}
2022-02-20 16:53:26 +01:00
public function setRange(int $offset, int $length) {
$this->offset = $offset;
$this->length = $length;
}
public function getMD5SumIn(): ?string {
return $this->md5SumIn;
}
public function getSHA1SumIn(): ?string {
return $this->sha1SumIn;
}
public function getMD5SumOut(): ?string {
return $this->md5SumOut;
}
public function getSHA1SumOut(): ?string {
return $this->sha1SumOut;
}
2021-11-11 14:25:26 +01:00
}