How do I use Openssl functions in VB.Net?

Asked

Viewed 157 times

3

Is there a DLL that I can use the functions of Openssl, to work with signatures, PEM, etc.? How to work with it?

1 answer

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.

  • 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!

  • 1

    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!

  • 1

    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!

  • 1

    Don’t be so: https://www.openssl.org/docs/ssl/ssl.html and https://www.openssl.org/docs/crypto/crypto.html

  • 1

    Opá, now I can see if I can have some fun, hehe Thanks a lot, Vinicius! Grande Abraço!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.