I am using OPENSSL to verify a signature using a pem file (public key)\[code\]openssl dgst -sha1 -verify pubkey.pem -signature signature.bin signedData.txt\[/code\]I would like to do the same in C#/VB.NET without to use any OPENSSL wrapper for .NET but just using .NET.How to do that?