sql >> データベース >  >> RDS >> Mysql

PHP Mcryptで暗号化し、MySQL aes_decryptで復号化しますか?

    ここ で良い助けが見つかりました

    これは、プレーンテキストで最大65519文字の暗号化されたテキストで機能することに注意してください。 (UTF-8エンコーディングがない場合はもう少し多いかもしれません)

    暗号化するPHPコード:

    // MySQL uses 16 bytes key for 128 encryption/decryption
    $key = "ABCDEF0123456789";
    
    $plaintext = "This string was AES-128 / EBC / ZeroBytePadding encrypted.";
    // Optionally UTF-8 encode
    $plaintext_utf8 = utf8_encode($plaintext);
    // Find out what's your padding
    $pad_len = 16 - (strlen($plaintext_utf8) % 16);
    // Padd your text
    $plaintext_utf8 = str_pad($plaintext_utf8, (16 * (floor(strlen($plaintext_utf8) / 16) + 1)), chr($pad_len));
    
    // Encryption
    mt_srand();
    $td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_ECB, '');
    mcrypt_generic_init($td, $key, false);
    // Generates a warning about empty IV but it's Ok
    $ciphertext = mcrypt_generic($td, $plaintext_utf8);
    mcrypt_generic_deinit($td);
    $ciphertext = mysql_real_escape_string($ciphertext);
    
    // Store in MySQL
    $mysqli = new mysqli("localhost", "test", "test", "test");
    $mysqli->set_charset("utf8");
    $mysqli->query("insert into test(content) value ('$ciphertext')");
    $mysqli->close();
    

    string wasを検索するSQLクエリ :

    SELECT CAST(AES_DECRYPT(content,'ABCDEF0123456789') AS CHAR) AS content
    FROM test
    WHERE CAST(AES_DECRYPT(content,'ABCDEF0123456789') AS CHAR) like '%string was%';
    

    出力は次のとおりです:

    This string was AES-128 / EBC / ZeroBytePadding encrypted.
    

    注:MySQLテーブルは次の人によって作成されました:

    create table test (
    id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
    content blob ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    


    1. サブクエリからの文字列をmysqlの単一の行に連結するにはどうすればよいですか?

    2. で非オブジェクトのプロパティを取得しようとしています

    3. Excelを超えた5つの兆候

    4. MySQL-WHEREでのSELECTAS