Interface FileRecord

interface FileRecord {
    executable: boolean;
    integrity: {
        algorithm: "SHA256";
        blockSize: number;
        blocks: string[];
        hash: string;
    };
    offset: string;
    size: number;
    unpacked: boolean;
}

Hierarchy

  • FilesystemFileEntry
    • FileRecord

Properties

executable: boolean
integrity: {
    algorithm: "SHA256";
    blockSize: number;
    blocks: string[];
    hash: string;
}

Type declaration

  • algorithm: "SHA256"
  • blockSize: number
  • blocks: string[]
  • hash: string
offset: string
size: number
unpacked: boolean