Class ProtectionAlgorithmNames
Provides constants for hash algorithm identifiers used in document password protection.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model.Protection
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public static class ProtectionAlgorithmNames
Fields
SHA1
Identifies the SHA-1 hash algorithm for password verification; less secure than SHA-256 or higher.
Declaration
public const string SHA1 = "SHA-1"
Field Value
|
System.String
|
SHA256
Identifies the SHA-256 hash algorithm for password verification; recommended minimum for secure protection.
Declaration
public const string SHA256 = "SHA-256"
Field Value
|
System.String
|
SHA384
Identifies the SHA-384 hash algorithm for password verification; provides enhanced security over SHA-256.
Declaration
public const string SHA384 = "SHA-384"
Field Value
|
System.String
|
SHA512
Identifies the SHA-512 hash algorithm for password verification; the default and most secure option.
Declaration
public const string SHA512 = "SHA-512"
Field Value
|
System.String
|