asp.net - Using openssl with IronPython on a hosted website -


i have python script calls following:

signature = popen(["openssl", "sha1", "-sign", key, input], stdout=pipe).stdout.read(); 

i need run script through ironpython on hosted website. possible use openssl , somehow reference it?

i looked alternative using m2crypto unfortunately uses pyo file isn't supported ironpython.

any appreciated. pulling hair out...!

i don't know if .net's crypto libraries can need, that's option ironpython.

otherwise, should able install openssl on windows , use code gave as-is.


Comments

Popular posts from this blog

sql - text truncated using perl DBI insert -

c++ - Is it possible to compile a VST on linux? -

php - Pass object by reference or value -