Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/zswang/jmd5s

md5 函数封装
https://github.com/zswang/jmd5s

md5

Last synced: about 1 month ago
JSON representation

md5 函数封装

Awesome Lists containing this project

README

        

jmd5s(*5)
======

[![Build Status](https://img.shields.io/travis/zswang/jmd5s/master.svg)](https://travis-ci.org/zswang/jmd5s)
[![NPM version](https://img.shields.io/npm/v/jmd5s.svg)](http://badge.fury.io/js/jmd5s)

## 概述 「Overview」

jmd5s 是 md5 函数的封装,主要是为方便用 bower 管理

## API

```js
/**
* 进行 md5 编码
*
* @param {string} str 需要编码的字符串
* @return {string} 返回对应的 MD5 十六进制字符串
*/
function encode(str) { }
```
## 示例 「Examples」

```js
var password = prompt("input password"); // foo
if (jmd5s.encode(password) === 'acbd18db4cc2f85cedef654fccc4a4d8') {
alert('Login successful.');
}
```