3
Is there a DLL that I can use the functions of Openssl, to work with signatures, PEM, etc.? How to work with it?
3
Is there a DLL that I can use the functions of Openssl, to work with signatures, PEM, etc.? How to work with it?
2
Take a look at the design Openssl.NET. I’ve never used, I don’t know what the completeness of the API etc, but it’s the only one I know that delivers a solution more or less ready.
Another option would be to write yourself the PInvokes
and the structures.
Browser other questions tagged vb.net openssl
You are not signed in. Login or sign up in order to post.
Thanks, Vinicius! So I tried to assemble the dll structures that openssl itself provides, but I couldn’t. I found a dll with the name of Managedopenssl, I was able to import in the system and I am checking the functions, but not much about it lib. But thanks for now!
– Felipe S
PInvoke
it’s pretty boring to do even... after it hits works perfect, but until then it’s complicated. I didn’t know that lib. Good luck!– Vinícius Gobbo A. de Oliveira
This is true, and not to mention that I needed to discover the functions written in these dll, which until then also not found. Thanks!
– Felipe S
Don’t be so:
https://www.openssl.org/docs/ssl/ssl.html
andhttps://www.openssl.org/docs/crypto/crypto.html
– Vinícius Gobbo A. de Oliveira
Opá, now I can see if I can have some fun, hehe Thanks a lot, Vinicius! Grande Abraço!
– Felipe S