需要将php openssl代码转换为python

时间:2019-04-22 02:40:18

标签: php python openssl

我正在一个个人项目中,需要读取Python3中的openssl_pkey_get_private证书。现在,我需要在Python3中使用php中的openssl_pkey_get_details$complem = openssl_pkey_get_details(openssl_pkey_get_private($this->privateKey)); $this->Modulus = base64_encode($complem['rsa']['n']); $this->Exponent = base64_encode($complem['rsa']['e']); 等价物,但是我没有找到一种方法

我已经在网上搜索了与python相当的产品,而不用看。

我需要转换为python的PHP代码如下:

openssl_pkey_get_private

我为def openssl_pkey_get_private(private_key): detailed_key = RSA.importKey(private_key) return detailed_key 编写了以下代码:

a

上面的代码给出了一个包含enopenssl_pkey_get_details等的数组。但是对于find_element_by_id我不知道该怎么做。

0 个答案:

没有答案