在Python中将ECB PKCS7增加三倍

时间:2018-08-07 11:51:10

标签: python tripledes

我想要使用python语言的此功能。 padmode中的三重des = PKCS7。我有php代码:

<?php
//Create sign data(Tripledes(ECB,PKCS7))
function encrypt_pkcs7($str, $key)
{
   $key = base64_decode($key);
   $ciphertext = OpenSSL_encrypt($str,"DES-EDE3", $key, 
OPENSSL_RAW_DATA);
   return base64_encode($ciphertext);
}

0 个答案:

没有答案