/var/runtime/node_modules/@aws-sdk/node_modules/aws-crt/dist/native
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
import { Hashable } from "../common/crypto";/** * Computes an crc32 checksum. * * @param data The data to checksum * @param previous previous crc32 checksum result. Used if you are buffering large input. * * @category Crypto */export declare function crc32(data: Hashable, previous?: number): number;/** * Computes a crc32c checksum. * * @param data The data to checksum * @param previous previous crc32c checksum result. Used if you are buffering large input. * * @category Crypto */export declare function crc32c(data: Hashable, previous?: number): number;/** * Computes a crc64nvme checksum. * * @param data The data to checksum * @param previous previous crc64nvme checksum result. Used if you are buffering large input. * * @category Crypto */export declare function crc64nvme(data: Hashable, previous?: DataView): DataView;