mirror of
https://github.com/siv-org/siv.git
synced 2026-01-09 10:27:57 -05:00
bigint-fron-seed: Remove unused eslint-disable-next-line's
This commit is contained in:
@@ -21,9 +21,7 @@ export async function bigint_from_seed(seed: string, max = CURVE.l): Promise<big
|
||||
|
||||
// 1. Get enough bits
|
||||
while (bytes.byteLength < bytesNeeded + antibias_amount) {
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
const hash = await sha256(seed)
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
seed = [...new Uint8Array(hash)].join(',')
|
||||
bytes = appendBuffer(bytes, hash)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user