PdfHashAlgorithm Enumeration |
Represents a hash algorithm used in SautinSoft.Pdf cryptographic operations.
Namespace: SautinSoft.Pdf.SecurityAssembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2025.3.13
Syntaxpublic enum PdfHashAlgorithm
Public Enumeration PdfHashAlgorithm
MembersMember name | Value | Description |
---|
Unknown | 0 |
The hash algorithm is unknown.
|
MD5 | 1 |
The MD5 cryptographic hash algorithm that produces a hash whose size is 128 bits (16 bytes).
|
SHA1 | 2 |
The SHA1 cryptographic hash algorithm that produces a hash whose size is 160 bits (20 bytes).
|
RIPEMD160 | 3 |
The RIPEMD160 cryptographic hash algorithm that produces a hash whose size is 160 bits (20 bytes).
|
SHA256 | 4 |
The SHA256 cryptographic hash algorithm that produces a hash whose size is 256 bits (32 bytes).
|
SHA384 | 5 |
The SHA384 cryptographic hash algorithm that produces a hash whose size is 384 bits (48 bytes).
|
SHA512 | 6 |
The SHA512 cryptographic hash algorithm that produces a hash whose size is 512 bits (64 bytes).
|
See Also