我想在C#中使用PKCS#7签名数据:
ContentInfo contentInfo = new ContentInfo(dataToSign);
SignedCms signedCms = new SignedCms(contentInfo);
signedCms.ComputeSignature();
byte[] myCmsMessage = signedCms.Encode();
但我不知道将使用哪个lib。在openssl中,有2个libs pkcs7.h和cms.h。
应该使用哪个lib?