Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.security
Represents a file hash value that is reported as part of a security detection alert, usually in relation to a file entity instance.
Properties
| Property | Type | Description |
|---|---|---|
| algorithm | microsoft.graph.security.fileHashAlgorithm | The hash algorithm type. The possible values are: unknown, md5, sha1, sha256, sha256ac, unknownFutureValue. |
| value | String | The hash value. |
fileHashAlgorithm values
| Member | Description |
|---|---|
| unknown | Unknown hash algorithm that is used mostly for forward compatibility. |
| md5 | MD5 hash type. |
| sha1 | SHA1 hash type. |
| sha256 | SHA256 hash type. |
| sha256ac | SHA256 authenticode hash type. |
| unknownFutureValue | Evolvable enumeration sentinel value. Don't use. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.security.fileHash",
"algorithm": "String",
"value": "String"
}