{"success":true,"data":{"ext":"asice","name":"ASICE","description":"ASiC-E (Associated Signature Containers) is a container file format defined and maintained by the European Telecommunications Standards Institute (ETSI) for digitally signed and associated data files. It is used for electronic document exchange, qualified digital signatures, archival records, and other workflows that require one or more files to be packaged with validation data. The format is based on ZIP and is generally safe, though the integrity and trustworthiness of embedded signatures should still be verified.","mime":["application/vnd.etsi.asic-e+zip"],"risk_level":"Safe","signatures":[{"hex":"50 4B 03 04","offset":0,"sources":[{"name":"Apache Tika","url":"https://raw.githubusercontent.com/apache/tika/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml"}]}],"related":[],"usage":{"python":"def is_asice(file_path: str) -> bool:\n    \"\"\"Check if file is a valid ASICE by magic bytes.\"\"\"\n    signature = bytes([0x50, 0x4B, 0x03, 0x04])\n    with open(file_path, \"rb\") as f:\n        return f.read(4) == signature","node":"function isASICE(buffer: Buffer): boolean {\n  const signature = Buffer.from([0x50, 0x4B, 0x03, 0x04]);\n  return buffer.subarray(0, 4).equals(signature);\n}","go":"func IsASICE(data []byte) bool {\n    signature := []byte{0x50, 0x4B, 0x03, 0x04}\n    if len(data) < 4 {\n        return false\n    }\n    return bytes.Equal(data[:4], signature)\n}"}}}