Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 OPENSSL 使用 pem 文件(公钥)验证签名
openssl dgst -sha1 -verify pubkey.pem -signature signature.bin signedData.txt
我想在 C#/VB.NET 中做同样的事情,而不使用任何 .NET 的 OPENSSL 包装器,而只使用 .NET。
怎么做?