This documentation is for the old version. Go to the latest Upload Suite docs

Metadata.Hash Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets an algorithm to generate a hash value for each user-selected file.

Namespace: Aurigma.ImageUploader
Assembly: Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)

Syntax

Visual Basic
Public Property Hash As String
C#
public string Hash { get; set; }

Property Value

Type: System.String

The algorithm to generate a hash value for each user-selected file.

Possible values are listed in the table below.

ValueDescription
SHASHA hash algorithm.
MD2MD2 hash algorithm.
MD5MD5 hash algorithm.

You can specify several hash algorithms separated by semicolon.

Default value is "".

Remarks

Note

Image Uploader Express does not upload hash sums. See the Comparison of Image Uploader Editions topic for details.

The hash is calculated only for the original file, not for converted files (even if the original file is not uploaded).

To get an uploaded hash sum at the server, use the Package.PackageFields collection. Here this value can be retrieved by a key named in the following way: HashCodeXXX_N, where XXX is a string value specified in this property (hash algorithm), and N is the index of the file in the request. E.g. if the property value is MD5;SHA, the PackageFields collection will contain the following keys:

  • HashCodeMD5_1, HashCodeMD5_2, etc.
  • HashCodeSHA_1, HashCodeSHA_2, etc.
Note

Hash calculation is quite resource-intensive operation. That is why if you do not need to verify uploaded files on the server, it makes sense to disable this feature to make Image Uploader faster. To do it, just specify empty string in this property.

See Also

Reference