Click or drag to resize
Pdftools logo

SignatureAlgorithm Enumeration

Cryptographic signature algorithm


Namespace: PdfTools.Crypto
Assembly: PdfTools (in PdfTools.dll) Version: 1.10.0+8a8a96de3867b60fd3fc0089ea1028db6add63f1
Syntax
C#
public enum SignatureAlgorithm
Members
Member nameValueDescription
RsaRsa1

RSA with PKCS#1 v1.5

This is the RSA with PKCS#1 v1.5 algorithm which is widely supported by cryptographic providers.
RsaSsaPss2

RSA with SSA-PSS (PKCS#1 v2.1)

This algorithm is generally recommended because it is considered a more secure alternative to RSA_RSA. However, it is not supported by all cryptographic providers.
Ecdsa3

Elliptic Curve Digital Signature Algorithm

This algorithm is generally recommended for new applications. However, it is not supported by all cryptographic providers.
See Also