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.
- Host: GitHub
- URL: https://github.com/xn-02f/md5
- Owner: xn-02f
- License: mit
- Created: 2018-10-22T15:11:44.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-01-20T05:57:42.000Z (over 1 year ago)
- Last Synced: 2025-04-07T18:52:30.216Z (about 1 year ago)
- Topics: hash, javascript, js, library, md5, nodejs
- Language: JavaScript
- Homepage: https://www.ietf.org/rfc/rfc1321.txt
- Size: 65.4 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# MD5
[](https://github.com/xn-02f/md5/actions)
[](https://www.npmjs.com/package/@xn-02f/md5)
[](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)