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

https://github.com/xn-02f/md5

🔓 A lightweight MD5 library, convert string to MD5 hash.
https://github.com/xn-02f/md5

hash javascript js library md5 nodejs

Last synced: about 1 year ago
JSON representation

🔓 A lightweight MD5 library, convert string to MD5 hash.

Awesome Lists containing this project

README

          

# MD5

[![Actions](https://img.shields.io/github/actions/workflow/status/xn-02f/md5/test.yml?style=flat-square&logo=github)](https://github.com/xn-02f/md5/actions)
[![npm](https://img.shields.io/npm/v/@xn-02f/md5.svg?style=flat-square&logo=npm)](https://www.npmjs.com/package/@xn-02f/md5)
[![LICENSE](https://img.shields.io/github/license/xn-02f/md5.svg?style=flat-square&logo=opensourceinitiative)](https://github.com/xn-02f/md5/blob/main/LICENSE)
> 🔓 `MD5` is tiny library without dependencies for node, convert string to MD5 hash.

## Install

Via npm :

```bash
npm i @xn-02f/md5
```

## Usage

```javascript
import md5 from '@xn-02f/md5'

md5('xn-02f'); // => '54d30fa674d13e3598970bc9c5e2388e'
```

Parameter | return
-- | --
`string`
The value to be converted. | `string`
MD5 hex hash string.

### License

> [MIT](https://github.com/xn-02f/md5/blob/main/LICENSE)







© 2025   |   xn-02f