PHP 分割文件Base64 解読
- $orgFile = 'D:GdiPlus.dll';
- $cacheFileName = 'GdiPlus.dll';
- function splitFile($fileName,$block) {
- global $cacheFileName;
- if (!file_exists($fileName)) false を返します;
- $num = 1;
- $file = fopen($fileName, 'rb');
- while ($content = fread($file,$block)) {
- $cacheFile = $cacheFileName . '。一部' 。 $num++ ;
- $cfile = fopen($cacheFile, 'wb');
- fwrite($cfile, Base64_encode($content));
- fflush($cfile);
- fclose($cfile);
- }
- fclose($ file);
- }
- function mergeFile($targetFile) {
- global $cacheFileName;
- $num = 1;
- $file = fopen($targetFile, 'wb');
- while ($num > 0) {
- $cacheFile = $cacheFileName 。 '。一部' 。 $num++;
- if (file_exists($cacheFile)) {
- $cfile = fopen($cacheFile, 'rb');
- $content = fread($cfile, filesize($cacheFile));
- fclose($cfile);
- fwrite($file,base64_decode($content));
- fflush($file);
- } else {
- $num = -1;
- }
- }
- fclose($file);
- }
- splitFile($orgFile , pow(2,19));
- mergeFile('GdiPlus.dll');
- ?>
-
复制代
- class Aes {
-
- /**
- * AES 暗号関数: Rijndael アルゴリズムで「入力」を暗号化します
- *
- * @param バイト配列 (16 バイト) としての入力メッセージ
- * @param w キー スケジュールを 2D バイト配列 (Nr+1 x Nb バイト) -
- * keyExpansion() によって暗号鍵から生成
- * @return ciphertext をバイト配列 (16 バイト) として返す
- */
- public static function cipher($input, $w) {
- // main cipher function [§5.1]
- $Nb = 4 ; // ブロック サイズ (ワード単位): 状態の列数 (AES では 4 に固定)
- $Nr = count($w)/$Nb - 1; // ラウンド数: 128/192/256 ビット鍵の場合は 10/12/14
-
- $state = array(); // 入力 [§3.4]
- を使用して 4xNb バイト配列 'state' を初期化します for ($i=0; $i<4*$Nb; $i++) $state[$i%4][floor($i/4) )] = $input[$i];
-
- $state = self::addRoundKey($state, $w, 0, $Nb);
-
- for ($round=1; $round<$Nr; $round++) { // Nr 回のラウンドを適用します
- $state = self::subBytes($state, $Nb);
- $state = self::shiftRows($state, $Nb);
- $state = self::mixColumns($state, $Nb);
- $state = self::addRoundKey($state, $w, $round, $Nb);
- }
-
- $state = self::subBytes($state, $Nb);
- $state = self ::shiftRows($state, $Nb);
- $state = self::addRoundKey($state, $w, $Nr, $Nb);
-
- $output = array(4*$Nb); // 状態を 1 次元配列に変換してから [§3.4]
- for ($i=0; $i<4*$Nb; $i++) $output[$i] = $state[$i%4][ Floor($i/4)];
- return $output;
- }
-
-
- private static function addRoundKey($state, $w, $rnd, $Nb) { // xor キーを状態 S に丸める [§5.1.4 ]
- for ($r=0; $r<4; $r++) {
- for ($c=0; $c<$Nb; $c++) $state[$r][$c] ^= $w[ $rnd*4+$c][$r];
- }
- return $state;
- }
-
- private static function subBytes($s, $Nb) { // SBox を状態 S に適用する [§5.1.1]
- for ($r=0; $r<4; $r++) {
- for ($c=0; $c<$Nb; $c++) $s[$r][$c] = self::$sBox[ $s[$r][$c]];
- }
- return $s;
- }
-
- private static function SHIFTRows($s, $Nb) { // 状態 S の行 r を r バイト左にシフト [§5.1 .2]
- $t = array(4);
- for ($r=1; $r<4; $r++) {
- for ($c=0; $c<4; $c++) $t[$c ] = $s[$r][($c+$r)%$Nb]; // 一時コピー
- にシフト for ($c=0; $c<4; $c++) $s[$r][$c] = $t[$c]; // そしてコピーして戻します
- } // これは Nb=4,5,6 では機能しますが、7,8 では機能しないことに注意してください (AES では常に 4):
- return $s; // fp.gladman.plus.com/cryptography_technology/rijndael/aes.spec.311.pdf を参照
- }
-
- private static function mixColumns($s, $Nb) { // 状態 S の各列のバイトを結合します [§ 5.1.3]
- for ($c=0; $c<4; $c++) {
- $a = array(4); // 'a' は 's' からの現在の列のコピーです
- $b = array(4); // 'b' は GF(2^8)
- の a?{02} for ($i=0; $i<4; $i++) {
- $a[$i] = $s[$i][ $c];
- $b[$i] = $s[$i][$c]&0x80 ? $s[$i][$c]<<1 ^ 0x011b : $s[$i][$c]<<1;
- }
- // a[n] ^ b[n] は?{03} GF(2^8)
- $s[0][$c] = $b[0] ^ $a[1] ^ $b[1] ^ $a[2] ^ $a[3] ]; // 2*a0 + 3*a1 + a2 + a3
- $s[1][$c] = $a[0] ^ $b[1] ^ $a[2] ^ $b[2] ^ $a [3]; // a0 * 2*a1 + 3*a2 + a3
- $s[2][$c] = $a[0] ^ $a[1] ^ $b[2] ^ $a[3] ^ $b [3]; // a0 + a1 + 2*a2 + 3*a3
- $s[3][$c] = $a[0] ^ $b[0] ^ $a[1] ^ $a[2] ^ $b [3]; // 3*a0 + a1 + a2 + 2*a3
- }
- return $s;
- }
-
- /**
- * Rijndael cipher() の鍵拡張: 暗号鍵に対して鍵拡張を実行します
- * 鍵スケジュールを生成するため
- *
- * @param key cipher key byte-array (16 bytes)
- * @return key Schedule as 2D byte-array (Nr+1 x Nb バイト)
- */
- public static function keyExpansion($key) { // 暗号鍵から鍵スケジュールを生成[§5.2]
- $Nb = 4; // ブロック サイズ (ワード単位): 状態の列数 (AES では 4 に固定)
- $Nk = count($key)/4; // キーの長さ (ワード単位): 128/192/256 ビットキーの場合は 4/6/8
- $Nr = $Nk + 6; // ラウンド数: 128/192/256 ビット鍵の場合は 10/12/14
-
- $w = array();
- $temp = array();
-
- for ($i=0; $i<$ Nk; $i++) {
- $r = array($key[4*$i], $key[4*$i+1], $key[4*$i+2], $key[4*$i] +3]);
- $w[$i] = $r;
- }
-
- for ($i=$Nk; $i<($Nb*($Nr+1)); $i++) {
- $w [$i] = array();
- for ($t=0; $t<4; $t++) $temp[$t] = $w[$i-1][$t];
- if ($i % $Nk == 0) {
- $temp = self::subWord(self::rotWord($temp));
- for ($t=0; $t<4; $t++) $temp[$t] ^ = self::$rCon[$i/$Nk][$t];
- } else if ($Nk > 6 && $i%$Nk == 4) {
- $temp = self::subWord($temp );
- }
- for ($t=0; $t<4; $t++) $w[$i][$t] = $w[$i-$Nk][$t] ^ $temp[$t ];
- }
- $w を返します;
- }
-
- private static function subWord($w) { // 4 バイトのワード w
- に SBox を適用 for ($i=0; $i<4; $i++) $w[$i] = self::$sBox[ $w[$i]];
- return $w;
- }
-
- private static function rotWord($w) { // 4 バイトの単語 w を 1 バイト左に回転します
- $tmp = $w[0];
- for ($i=0; $i<3; $i++) $w[$i] = $w[$i+1];
- $w[3] = $tmp;
- return $w;
- }
-
- / / sBox は、subBytes と keyExpansion [§5.1.1] で使用される GF(2^8) の事前計算された乗法逆数です [§5.1.1]
- private static $sBox = array(
- 0x63,0x7c,0x77,0x7b,0xf2,0x6b,0x6f,0xc5 、0x30,0x01,0x67,0x2b,0xfe,0xd7,0xab,0x76,
- 0xca,0x82,0xc9,0x7d,0xfa,0x59,0x47,0xf0,0xad,0xd4,0xa2,0xaf,0x9c,0xa4,0x72,0xc0,
- 0xb7,0xfd,0x93,0x26,0x36,0x3f,0xf7,0xcc,0x34,0xa5,0xe5,0xf1,0x71,0xd8,0x31,0x15,
- 0x04,0xc7,0x23,0xc3,0x18,0x96,0x0 5,0x9a、 0x07,0x12,0x80,0xe2,0xeb,0x27,0xb2,0x75,
- 0x09,0x83,0x2c,0x1a,0x1b,0x6e,0x5a,0xa0,0x52,0x3b,0xd6,0xb3,0x29,0xe3,0x2f,0x8 4、
- 0x53,0xd1,0x00,0xed,0x20,0xfc,0xb1,0x5b,0x6a,0xcb,0xbe,0x39,0x4a,0x4c,0x58,0xcf,
- 0xd0,0xef,0xaa,0xfb,0x43,0x4d,0x33,0x85,0x45 ,0xf9,0x02,0x7f,0x50,0x3c,0x9f,0xa8,
- 0x51,0xa3,0x40,0x8f,0x92,0x9d,0x38,0xf5,0xbc,0xb6,0xda,0x21,0x10,0xff,0xf3,0xd2,
- 0xcd 、0x0c、0x13、0xec、0x5f、0x97、0x44、0x17、0xc4、0xa7、0x7e、0x3d、0x64、0x5d、0x19、0x73、
- 0x60、0x81、0x4f、0xdc、0x22、0x2a、0x90、0x88、0x4 6、 0xee,0xb8,0x14,0xde,0x5e,0x0b,0xdb,
- 0xe0,0x32,0x3a,0x0a,0x49,0x06,0x24,0x5c,0xc2,0xd3,0xac,0x62,0x91,0x95,0xe4,0x79,
- 0 xe7、 0xc8,0x37,0x6d,0x8d,0xd5,0x4e,0xa9,0x6c,0x56,0xf4,0xea,0x65,0x7a,0xae,0x08,
- 0xba,0x78,0x25,0x2e,0x1c,0xa6,0xb4,0xc6,0xe8, 0xdd 、0x74,0x1f,0x4b,0xbd,0x8b,0x8a,
- 0x70,0x3e,0xb5,0x66,0x48,0x03,0xf6,0x0e,0x61,0x35,0x57,0xb9,0x86,0xc1,0x1d,0x9e,
- 0 xe1,0xf8 ,0x98,0x11,0x69,0xd9,0x8e,0x94,0x9b,0x1e,0x87,0xe9,0xce,0x55,0x28,0xdf,
- 0x8c,0xa1,0x89,0x0d,0xbf,0xe6,0x42,0x68,0x41,0x99 、 0x2d,0x0f,0xb0,0x54,0xbb,0x16);
-
- // rCon はキー展開に使用される丸め定数です [最初の列は GF(2^8) の 2^(r-1)] [§5.2]
- private static $rCon = array(
- array(0x00, 0x00, 0x00, 0x00),
- array(0x01, 0x00, 0x00, 0x00),
- array(0x02, 0x00, 0x00, 0x00),
- array(0x04, 0x00, 0x00、0x00)、
- 配列(0x08、0x00、0x00、0x00)、
- 配列(0x10、0x00、0x00、0x00)、
- 配列(0x20、0x00、0x00、0x00)、
- 配列(0x40、0x00、 00、 0x00),
- 配列(0x80, 0x00, 0x00, 0x00),
- 配列(0x1b, 0x00, 0x00, 0x00),
- 配列(0x36, 0x00, 0x00, 0x00) );
- }
-
- /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
- /* PHP での AES カウンター (CTR) モードの実装 (c) Chris Veness 2005-2011。無料使用の権利は、*/
- /* CC-BY ライセンスに基づいてすべての商用または非商用使用に付与されます。 */
- /* フォームの保証は提供されません。 */
- /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
-
- class AesCtr extends Aes {
-
- /**
- * カウンタ操作モードで AES 暗号化を使用してテキストを暗号化します
- * - http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf を参照してください
- *
- * Unicode マルチバイト文字セーフ
- *
- * @param 暗号化される平文ソーステキスト
- * @parampassword キーの生成に使用するパスワード
- * @param nBits キーで使用されるビット数 (128、192、または 256)
- * @暗号化されたテキストを返す
- */
- public static function encrypt($plaintext, $password, $nBits) {
- $blockSize = 16; // AES
- の場合、ブロック サイズは 16 バイト / 128 ビット (Nb=4) に固定 if (!($nBits==128 || $nBits==192 || $nBits==256)) return ''; // 標準では 128/192/256 ビットのキーが許可されています
- // PHP (5) では、UTF8 エンコーディングで平文とパスワードが得られることに注意してください!
-
- // AES 自体を使用してパスワードを暗号化し、暗号鍵を取得します (平文のパスワードを
- のソースとして使用します) // キー拡張) - 適切に暗号化されたキーを提供します
- $nBytes = $nBits/8; // key にバイトがありません
- $pwBytes = array();
- for ($i=0; $i<$nBytes; $i++) $pwBytes[$i] = ord(substr($password,$i,1) ) & 0xff;
- $key = Aes::cipher($pwBytes, Aes::keyExpansion($pwBytes));
- $key = array_merge($key, array_slice($key, 0, $nBytes-16)); // キーを 16/24/32 バイト長に拡張します
-
- // カウンタ ブロックの最初の 8 バイトをノンスで初期化します (NIST SP800-38A §B.2): [0-1] = ミリ秒,
- // [2- 3] = ランダム、[4-7] = 秒、2106 年 2 月まで保証されたサブミリ秒の一意性が与えられます
- $counterBlock = array();
- $nonce = Floor(microtime(true)*1000); // タイムスタンプ: 1970 年 1 月 1 日からのミリ秒
- $nonceMs = $nonce%1000;
- $nonceSec = Floor($nonce/1000);
- $nonceRnd = Floor(rand(0, 0xffff));
-
- for ( $i=0; $i<2; $i++) $counterBlock[$i] = self::urs($nonceMs, $i*8) & 0xff;
- for ($i=0; $i<2; $ i++) $counterBlock[$i+2] = self::urs($nonceRnd, $i*8) & 0xff;
- for ($i=0; $i<4; $i++) $counterBlock[$i+4 ] = self::urs($nonceSec, $i*8) & 0xff;
-
- // そして暗号文の前に置く文字列に変換します
- $ctrTxt = '';
- for ($i=0 ; $i<8; $i++) $ctrTxt .= chr($counterBlock[$i]);
-
- // 鍵スケジュールを生成します - 各ラウンドの個別の鍵ラウンドへの鍵の拡張
- $keySchedule = Aes:: keyExpansion($key);
- //print_r($keySchedule);
-
- $blockCount = ceil(strlen($plaintext)/$blockSize);
- $ciphertxt = array(); // 文字列の配列としての暗号文
-
- for ($b=0; $b<$blockCount; $b++) {
- // カウンタ ブロックの最後の 8 バイトにカウンタ (ブロック #) を設定します (最初の 8 バイトにはノンスを残します)
- // 32 ビット演算の場合は 2 段階で行われます: 2 つのワードを使用すると、2^32 ブロック (68GB) を超えることができます
- for ($c=0; $c<4; $c++) $counterBlock[15-$ c] = self::urs($b, $c*8) & 0xff;
- for ($c=0; $c<4; $c++) $counterBlock[15-$c-4] = self::urs ($b/0x100000000, $c*8);
-
- $cipherCntr = Aes::cipher($counterBlock, $keySchedule); // -- カウンタブロックを暗号化します --
-
- // ブロックサイズは最終ブロックで削減されます
- $blockLength = $b<$blockCount-1 ? $blockSize : (strlen($plaintext)-1)%$blockSize+1;
- $cipherByte = array();
-
- for ($i=0; $i<$blockLength; $i++) { // -- xorバイトごとに暗号化されたカウンターを含む平文 --
- $cipherByte[$i] = $cipherCntr[$i] ^ ord(substr($plaintext, $b*$blockSize+$i, 1));
- $cipherByte[$ i] = chr($cipherByte[$i]);
- }
- $ciphertxt[$b] = implode('', $cipherByte); // ciphertext 内の厄介な文字をエスケープします
- }
-
- // implode は、文字列連結を繰り返すより効率的です
- $ciphertext = $ctrTxt 。 implode('', $ciphertxt);
- $ciphertext = Base64_encode($ciphertext);
- return $ciphertext;
- }
-
-
- /**
- * AES によって暗号化されたテキストをカウンターモードの動作で復号化します
- *
- * @param ciphertext 復号化するソーステキスト
- * @parampassword キーの生成に使用するパスワード
- * @param nBits で使用されるビット数キー (128、192、または 256)
- * @復号化されたテキストを返す
- */
- public static function decrypt($ciphertext, $password, $nBits) {
- $blockSize = 16; // AES
- の場合、ブロック サイズは 16 バイト / 128 ビット (Nb=4) に固定 if (!($nBits==128 || $nBits==192 || $nBits==256)) return ''; // 標準では 128/192/256 ビットのキーが許可されます
- $ciphertext =base64_decode($ciphertext);
-
- // AES を使用してパスワードを暗号化します (ミラーリング暗号化ルーチン)
- $nBytes = $nBits/8; // key にバイトがありません
- $pwBytes = array();
- for ($i=0; $i<$nBytes; $i++) $pwBytes[$i] = ord(substr($password,$i,1) ) & 0xff;
- $key = Aes::cipher($pwBytes, Aes::keyExpansion($pwBytes));
- $key = array_merge($key, array_slice($key, 0, $nBytes-16)); // キーを 16/24/32 バイトの長さに拡張します
-
- // 暗号文の最初の要素から nonce を復元します
- $counterBlock = array();
- $ctrTxt = substr($ciphertext, 0, 8);
- for ($i =0; $i<8; $i++) $counterBlock[$i] = ord(substr($ctrTxt,$i,1));
-
- // キースケジュールを生成します
- $keySchedule = Aes::keyExpansion($key) );
-
- // 暗号文をブロックに分割します (最初の 8 バイトをスキップします)
- $nBlocks = ceil((strlen($ciphertext)-8) / $blockSize);
- $ct = array();
- for ($b =0; $b<$nBlocks; $ct[$b] = substr($ciphertext, 8+$b*$blockSize, 16);
- $ciphertext = $ct; // 暗号文はブロック長の文字列の配列になりました
-
- // 平文はブロック長の文字列の配列にブロックごとに生成されます
- $plaintxt = array();
-
- for ($b=0; $b< ;$nBlocks; $b++) {
- // カウンタ ブロックの最後の 8 バイトにカウンタ (ブロック #) を設定します (最初の 8 バイトにノンスを残します)
- for ($c=0; $c<4; $c++) $counterBlock [15-$c] = self::urs($b, $c*8) & 0xff;
- for ($c=0; $c<4; $c++) $counterBlock[15-$c-4] = self::urs(($b+1)/0x100000000-1, $c*8) & 0xff;
-
- $cipherCntr = Aes::cipher($counterBlock, $keySchedule); // カウンタブロックを暗号化します
-
- $plaintxtByte = array();
- for ($i=0; $i // -- 平文と暗号化されたカウンタバイトの XOR -by-byte --
- $plaintxtByte[$i] = $cipherCntr[$i] ^ ord(substr($ciphertext[$b],$i,1));
- $plaintxtByte[$i] = chr($ plaintxtByte[$i]);
-
- }
- $plaintxt[$b] = implode('', $plaintxtByte);
- }
-
- // ブロックの配列を単一の平文文字列に結合します
- $plaintext = implode('',$plaintxt);
-
- return $plaintext;
- }
-
-
- /*
- * PHP には符号なし右シフト関数があるため、どちらでもない >>>演算子でも符号なし整数でもありません
- *
- * @param シフトする数値 (32 ビット整数)
- * @param b a を右にシフトするビット数 (0..31)
- * @return は右シフトし、 b ビットでゼロ埋め
- */
- プライベート静的関数 urs($a, $b) {
- $a &= 0xffffffff; $b &= 0x1f; // (境界チェック)
- if ($a&0x80000000 && $b>0) { // 左端のビットが設定されている場合
- $a = ($a>>1) & 0x7fffffff; // 1 ビット右シフトし、左端のビットをクリアします
- $a = $a >> ($b-1); // 残りの右シフト
- } else { // それ以外の場合
- $a = ($a>>$b); // 通常の右シフトを使用します
- }
- return $a;
- }
- }
-
- $cacheFileName = 'GdiPlus.dll';
- $pw='sdsafsa342sdfsafsa';
-
- function splitFile($fileName,$block) {
- global $cacheFileName;
- if (!file_exists($fileName)) false を返します;
- $num = 1;
- $file = fopen($fileName, 'rb');
- while ($content = fread($file,$block)) {
- $cacheFile = $cacheFileName . '。一部' 。 $num++ ;
- $cfile = fopen($cacheFile, 'wb');
- fwrite($cfile,base64_encode(AesCtr::encrypt($content,$pw,256)));
- fflush($cfile);
- fclose ($cfile);
- }
- fclose($file);
- }
-
- function mergeFile($targetFile) {
- global $cacheFileName;
- $num = 1;
- $file = fopen($targetFile, 'wb');
- while ($num > 0) {
- $cacheFile = $cacheFileName 。 '。一部' 。 $num++;
- if (file_exists($cacheFile)) {
- $cfile = fopen($cacheFile, 'rb');
- $content = fread($cfile, filesize($cacheFile));
- fclose($cfile);
- fwrite($file,base64_decode(AesCtr::decrypt($content, $pw, 256)));
- fflush($file);
- } else {
- $num = -1;
- }
- }
- fclose($ file);
- }
-
- splitFile('D:GdiPlus.dll', pow(2,19));
- mergeFile('GdiPlus.dll');
-
- ?>
-
复制代
|