* Generate content hash for an MCPB file
(data: Uint8Array)
| 101 | * Generate content hash for an MCPB file |
| 102 | */ |
| 103 | function generateContentHash(data: Uint8Array): string { |
| 104 | return createHash('sha256').update(data).digest('hex').substring(0, 16) |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Get cache directory for MCPB files |