Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/manyuanrong/deno-checksum

Sha1、MD5 algorithms for Deno
https://github.com/manyuanrong/deno-checksum

Last synced: about 1 month ago
JSON representation

Sha1、MD5 algorithms for Deno

Awesome Lists containing this project

README

        

# deno-checksum

【Deprecated】Use [std/hash](https://deno.land/std/hash) instead

[![tag](https://img.shields.io/github/tag/manyuanrong/deno-checksum.svg)](https://github.com/manyuanrong/deno-checksum)
[![Build Status](https://github.com/manyuanrong/deno-checksum/workflows/ci/badge.svg?branch=master)](https://github.com/manyuanrong/deno-checksum/actions)
[![license](https://img.shields.io/github/license/manyuanrong/deno-checksum.svg)](https://github.com/manyuanrong/deno-checksum)
[![tag](https://img.shields.io/badge/deno-v0.42.0-green.svg)](https://github.com/denoland/deno)

```ts
import { Hash, encode } from "https://deno.land/x/[email protected]/mod.ts";

console.log(new Hash("md5").digest(encode("hello world")).hex());
// or
console.log(new Hash("md5").digestString("hello world").hex());
// 5eb63bbbe01eeed093cb22bb8f5acdc3

console.log(new Hash("sha1").digestString("hello world").hex());
// or
console.log(new Hash("sha1").digest(encode("hello world")).hex());
// 2aae6c35c94fcfb415dbe95f408b9ce91ee846ed
```