Here's the code to create a digital signature:
ContentInfo contentInfo = new ContentInfo(msg);
SignedCms signedCms = new SignedCms(contentInfo);
CmsSigner cmsSigner = new CmsSigner(signerCert);
signedCms.ComputeSignature(cmsSigner, false);
How can I get a list of algorithms supported by the certificate? And how to create a digital signature using the specified algorithm from list?
Here are some examples of screenshots of one of the proprietary software designed to create a digital signature:
List of algorithms from first Certificate:
List of algorithms from second Certificate:
What Maarten says is correct. Certificate contains digital signature for the public key, which is produced according to some algorithm. In case of first ceritificate signature is GOST R 34.10-2001 and in second one it's the most likely RSA. Any hash can be used for signing data, but GOST R 34.10-2001 clearly states that GOST R 34.11-94 hash should be used as the only hash algorithm. Just to sum it up: list of allowed hash algorithms is optionally defined in the standard, which defines digital signature scheme.