converter.hash Property HTML5/Flash Uploader JavaScript

Supported technologies:

Gets or sets an algorithm to generate a hash value for each converted file created using this converter.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    converters : [
        {
            //...other params...
            hash: "",
            //...other params...
        }
    ]
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').converters().set(index).hash(value);
value = $au.imageUploaderFlash('uploaderID').converters().get(index).hash();

Property Value

Type: String

The algorithm to generate a hash value for each converted file created using this converter. Currently, the only value md5 is supported. If an empty string specified, no hash is calculated.

Default value is "".

Remarks

See Also

Reference