function encrypt_3DES($message, $key){
// Se establece un IV por defecto
$bytes = array(0,0,0,0,0,0,0,0); //byte [] IV = {0, 0, 0, 0, 0, 0, 0, 0}
$iv = implode(array_map("chr", $bytes)); //PHP 4 >= 4.0.2
// Se cifra
$ciphertext = mcrypt_encrypt(MCRYPT_3DES, $key, $message, MCRYPT_MODE_CBC, $iv); //PHP 4 >= 4.0.2
return $ciphertext;
}
我在php中有这个代码,我需要将它翻译成asp经典。它是用于新卡支付系统的代码,我不知道如何从这里开始。 有人可以帮帮我吗?
答案 0 :(得分:0)
我在使用CryptoJS的javascript中找到了一个解决方案。您可以将它用于经典的asp代码:
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/tripledes.js"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/pad-nopadding.js"></script>
<script>
function padString(source) {
var paddingChar = '\0';
var size = 8;
var x = source.length % size;
var padLength = size - x;
for (var i = 0; i < padLength; i++) source += paddingChar;
return source;
}
var key = CryptoJS.enc.Base64.parse('Mk9m98IfEblmPfrpsawt7BmxObt98Jev');
var iv = CryptoJS.enc.Hex.parse('0000000000000000');
var message = "1447841550";
var padMsg = padString(message);
var encrypted = CryptoJS.TripleDES.encrypt(padMsg, key, { iv: iv, padding: CryptoJS.pad.NoPadding, mode: CryptoJS.mode.CBC});
alert(encrypted);
</script>
encrypted = n6lp0I1w5FxLQHskKMn4sw ==
与Redsys PHP平台的结果相同。