the documentation is somehow sparse. I intend to use m2crypto in a webserver and it seems m2crypto.threading.init() shall be used.
Shall my python function called upon web request be something as:
def do_something():
M2Crypto.threading.init()
sign something with m2crypto
M2Crypto.threading.cleanup()
return httpresponse
or something else? Any web reference on this threading usage?
Thanks Nenad