SignatureStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the valid status flags that a signature on a file may have.
public enum class SignatureStatus
public enum SignatureStatus
type SignatureStatus =
Public Enum SignatureStatus
- Inheritance
-
SignatureStatus
Fields
Name | Value | Description |
---|---|---|
Valid | 0 | The file has a valid signature. This means only that the signature is syntactically valid. It does not imply trust in any way. |
UnknownError | 1 | The file has an invalid signature. |
NotSigned | 2 | The file has no signature. |
HashMismatch | 3 | The hash of the file does not match the hash stored along with the signature. |
NotTrusted | 4 | The certificate was signed by a publisher not trusted on the system. |
NotSupportedFileFormat | 5 | The specified file format is not supported by the system for signing operations. This usually means that the system does not know how to sign or verify the file type requested. |
Incompatible | 6 | The signature cannot be verified because it is incompatible with the current system. |