0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-29 17:46:30 +01:00
hono/deno_dist/utils/crypto.ts
Yusuke Wada 7345b8105d
fix(ETag): fixed an error when the file size is too large. (#461)
Made `utils/crypto` supports `ReadbleStream`.

Fix #458
2022-08-09 10:35:30 +09:00

61 lines
1.6 KiB
TypeScript

type Algorithm = {
name: string
alias: string
}
type Data = string | boolean | number | object | ArrayBufferView | ArrayBuffer | ReadableStream
export const sha256 = async (data: Data) => {
const algorithm: Algorithm = { name: 'SHA-256', alias: 'sha256' }
const hash = await createHash(data, algorithm)
return hash
}
export const sha1 = async (data: Data) => {
const algorithm: Algorithm = { name: 'SHA-1', alias: 'sha1' }
const hash = await createHash(data, algorithm)
return hash
}
export const md5 = async (data: Data) => {
const algorithm: Algorithm = { name: 'MD5', alias: 'md5' }
const hash = await createHash(data, algorithm)
return hash
}
export const createHash = async (data: Data, algorithm: Algorithm): Promise<string | null> => {
let sourceBuffer: ArrayBufferView | ArrayBuffer
if (data instanceof ReadableStream) {
let body = ''
const reader = data.getReader()
await reader?.read().then(async (chuck) => {
const value = await createHash(chuck.value || '', algorithm)
body += value
})
return body
}
if (ArrayBuffer.isView(data) || data instanceof ArrayBuffer) {
sourceBuffer = data
} else {
if (typeof data === 'object') {
data = JSON.stringify(data)
}
sourceBuffer = new TextEncoder().encode(String(data))
}
if (crypto && crypto.subtle) {
const buffer = await crypto.subtle.digest(
{
name: algorithm.name,
},
sourceBuffer
)
const hash = Array.prototype.map
.call(new Uint8Array(buffer), (x) => ('00' + x.toString(16)).slice(-2))
.join('')
return hash
}
return null
}