Hello,
I need to include m2crypto in my project. I am developing on windows . The following code
import os.path as op
from M2Crypto import RSA
rsa_key_path=op.expanduser('~\\.android\\adbkey')
with open(rsa_key_path + '.pub') as rsa_pub_file:
public_key = rsa_pub_file.read()
rsa_key = RSA.load_key(rsa_key_path)
produces the error
OPENSSL_Uplink(000007FEF3BB2000,08): no OPENSSL_Applink
I have found (google), that Python.exe needs to be compiled with applink.c included, to make it work on windows. As far as I understood, this is not an issue on unix, no clue about android.
Does anybody has a Python.exe (2.7) with applink.c compiled?
Is it still possible, to distribute the app on windows and android?
Questions over questions...