【问题标题】:PHP how encode/decode text with key?PHP如何用键编码/解码文本?
【发布时间】:2014-05-27 12:48:40
【问题描述】:

代码:

$result = mcrypt_ecb (MCRYPT_3DES, 'test', $string, MCRYPT_ENCRYPT);

它编码编码$string。但是如何解码$result

请告诉我如何解码$result

【问题讨论】:

  • 此功能已被弃用,不应再使用。您可能想改用mcrypt_generic()
  • 您是如何得知这种加密方法的?如果存在解密方法也可以用同样的方法查找

标签: php decode encode


【解决方案1】:

解密:

//Encryption
$result = mcrypt_ecb (MCRYPT_3DES, 'test', $string, MCRYPT_ENCRYPT);
//Decryption
$decrypt_result = mcrypt_ecb (MCRYPT_3DES, 'test', $result, MCRYPT_DECRYPT);

您需要更改参数中的模式并传递加密值。

注意:mcrypt_generic() 自 PHP 7.1.0 起也已弃用。

阅读手册:http://www.php.net/manual/en/function.mcrypt-ecb.php

最好使用mcrypt_generic()

$cc = 'my secret text';
$key = 'my secret key';
$iv = '12345678';

$cipher = mcrypt_module_open(MCRYPT_BLOWFISH,'','cbc','');

mcrypt_generic_init($cipher, $key, $iv);
$encrypted = mcrypt_generic($cipher,$cc);
mcrypt_generic_deinit($cipher);

mcrypt_generic_init($cipher, $key, $iv);
$decrypted = mdecrypt_generic($cipher,$encrypted);
mcrypt_generic_deinit($cipher);

echo "encrypted : ".$encrypted;
echo "<br>";
echo "decrypted : ".$decrypted;

【讨论】:

  • 你能用实际的编码/解码方法写答案吗?
  • 是的,我明白了——答案很好——但我看到了This function has been DEPRECATED,你能写出带有编码/解码功能的答案吗?
  • 注意:mcrypt_generic() 自 PHP 7.1.0 起也已弃用。
【解决方案2】:

https://gist.github.com/joashp/a1ae9cb30fa533f4ad94

使用来自 Joashp 的 OpenSSL 进行简单的 PHP 加密和解密

/**
 * simple method to encrypt or decrypt a plain text string
 * initialization vector(IV) has to be the same when encrypting and decrypting
 * 
 * @param string $action: can be 'encrypt' or 'decrypt'
 * @param string $string: string to encrypt or decrypt
 *
 * @return string
 */
function encrypt_decrypt($action, $string) {
    $output = false;
    $encrypt_method = "AES-256-CBC";
    $secret_key = 'This is my secret key';
    $secret_iv = 'This is my secret iv';
    // hash
    $key = hash('sha256', $secret_key);

    // iv - encrypt method AES-256-CBC expects 16 bytes - else you will get a warning
    $iv = substr(hash('sha256', $secret_iv), 0, 16);
    if ( $action == 'encrypt' ) {
        $output = openssl_encrypt($string, $encrypt_method, $key, 0, $iv);
        $output = base64_encode($output);
    } else if( $action == 'decrypt' ) {
        $output = openssl_decrypt(base64_decode($string), $encrypt_method, $key, 0, $iv);
    }
    return $output;
}
$plain_txt = "This is my plain text";
echo "Plain Text =" .$plain_txt. "\n";
$encrypted_txt = encrypt_decrypt('encrypt', $plain_txt);
echo "Encrypted Text = " .$encrypted_txt. "\n";
$decrypted_txt = encrypt_decrypt('decrypt', $encrypted_txt);
echo "Decrypted Text =" .$decrypted_txt. "\n";
if ( $plain_txt === $decrypted_txt ) echo "SUCCESS";
else echo "FAILED";
echo "\n";

【讨论】:

  • 优秀的简单解决方案我曾经在公式隐藏字段中加密电子邮件,然后在发送时解密!
【解决方案3】:

您应该在 ecb 模式下使用 mcrypt_encrypt 而不是。 mcrypr_ecb 已被贬低。

要解密它,你可以使用:mcrypt_decrypt

【讨论】:

  • 你能在 mcrypt_encrypt/mcrypt_decrypt 上写出带有编码/解码的答案吗?
【解决方案4】:

注意:从 PHP 7.1.0 开始,该函数已被弃用。强烈建议不要依赖此函数。

尝试使用 MCRYPT_DECRYPT

$result = mcrypt_ecb (MCRYPT_3DES, 'test', $string, MCRYPT_ENCRYPT);

$decrypted_text = mcrypt_ecb(MCRYPT_DES, 'test', $result, MCRYPT_DECRYPT);
echo rtrim($decrypted_text);

【讨论】:

    【解决方案5】:

    改用 PHP Libsodium。您可以查看Zend以获取更多说明。

    例子:

    $msg = 'This is a super secret message!';
    
    // Generating an encryption key and a nonce
    $key   = random_bytes(SODIUM_CRYPTO_SECRETBOX_KEYBYTES); // 256 bit
    $nonce = random_bytes(SODIUM_CRYPTO_SECRETBOX_NONCEBYTES); // 24 bytes
    
    // Encrypt
    $ciphertext = sodium_crypto_secretbox($msg, $nonce, $key);
    // Decrypt
    $plaintext = sodium_crypto_secretbox_open($ciphertext, $nonce, $key);
    
    echo $plaintext === $msg ? 'Success' : 'Error'
    

    【讨论】:

      猜你喜欢
      • 2013-04-05
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-02-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-12-13
      相关资源
      最近更新 更多