interface HashTableProps { results: [string, string, number][] saltHash: string } export default function HashTable({ results }: HashTableProps) { return (

哈希表

为保持页面性能,仅显示前面最多 1000 位人员的哈希校验

{results.map(([name, hash, distance], index) => ( ))}
序号 参与人 哈希值 与种子的距离
{index + 1} {name} {hash} {distance}
) }