* Generate content hash for an MCPB file
(data: Uint8Array)
| 91 | * Generate content hash for an MCPB file |
| 92 | */ |
| 93 | function generateContentHash(data: Uint8Array): string { |
| 94 | return createHash('sha256').update(data).digest('hex').substring(0, 16) |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Get cache directory for MCPB files |