import { TypedArray } from 'justypes' import { hash } from '@utils/hash.js' export function sha1(input: string | DataView | TypedArray): Promise { return hash('SHA1', input) }