IBM Aspera JavaScript Library
    Preparing search index...

    Interface GetChecksumOptions

    Request to get a file checksum

    interface GetChecksumOptions {
        checksumMethod?: "md5" | "sha1" | "sha256" | "sha512";
        chunkSize?: number;
        offset?: number;
        path: string;
    }
    Index

    Properties

    checksumMethod?: "md5" | "sha1" | "sha256" | "sha512"

    Hash algorithm to use. Default: 'md5'

    chunkSize?: number

    Number of bytes to read. If 0, read entire file from offset to end. Default: 0

    offset?: number

    Byte offset to start reading from. Default: 0

    path: string

    Absolute path to the file