0 votes
by (270 points)

I know that the Secure Mail component can read and/or create documents using signatures using RSASSA-PSS algorithms. However, I need you to verify if the aforementioned component support RSASSA-PSS signed certificates.

Regards,

Applies to: Rebex Secure Mail

1 Answer

0 votes
by (70.2k points)

Yes, RSASSA-PSS certificates are supported.

You can try it for yourself on e.g. this sample certificates

   var cert = Certificate.LoadDer(file);
   Console.WriteLine(cert.GetSubject());
   Console.WriteLine(cert.GetIssuer());
   Console.WriteLine(cert.Validate().Status);
...