我正在一个个人项目中,需要读取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
上面的代码给出了一个包含e
,n
,openssl_pkey_get_details
等的数组。但是对于find_element_by_id
我不知道该怎么做。