All Projects → youngjuning → wxMD5

youngjuning / wxMD5

Licence: MIT license
📄基于 blueimp/JavaScript-MD5 的支持小程序的MD5加密库

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to wxMD5

Wx Miniprogram Boilerplate
基于Gulp微信小程序开发工作流,支持less样式编写,支持ESLint代码检查等功能
Stars: ✭ 122 (+177.27%)
Mutual labels:  weixin, miniapp
Wxopenclub Wxapp Lessons
60 节微信小程序开发视频教程配套源代码
Stars: ✭ 798 (+1713.64%)
Mutual labels:  weixin, miniapp
wxBase64
🏗️在小程序中使用 js-base64 库
Stars: ✭ 19 (-56.82%)
Mutual labels:  weixin, miniapp
Devops Api
Golang + Beego 编写 提供开发/运维常用操作的HTTP API接口: 手机归属地查询、IP地址查询、工作日节假日判断、微信报警、钉钉报警、2步验证、密码存储、发送邮件、生成随机密码等功能
Stars: ✭ 258 (+486.36%)
Mutual labels:  md5, weixin
Compute-file-or-string-md5
Compute md5 value of file or string.
Stars: ✭ 111 (+152.27%)
Mutual labels:  md5
laravel-admin
LaravelAdmin是基于PHP开发的基础管理后台系统,做到开箱即用,为新项目开发省去了基础功能开发的步骤;此系统采用前后端分离模式,后端使用Laravel,前端使用vue;主要包含:登录、注销、可视化数据大屏、管理员、角色管理、菜单管理、权限管理、错误日志、登录日志、访问日志、获取服务器CPU使用率、内存使用率等功能。后端主要使用Artisan命令行、Jobs消息队列、 Rules验证规则、Restful API、Composer扩展包、Redis秒杀、Extend自定义扩展类:微信授权、钉钉告警推送、MongoDB、阿里云OSS、七牛云存储、七牛云直播、php-jwt TOKEN、Phpoffice、MySql数据库字典、Elasticsearch等技术。
Stars: ✭ 45 (+2.27%)
Mutual labels:  weixin
crypto.js
base on crypto module
Stars: ✭ 13 (-70.45%)
Mutual labels:  md5
wxpusher-sdk-go
微信消息实时推送服务[WxPusher]的go版本sdk,可以通过API实时给个人微信推送消息。wechat pusher.
Stars: ✭ 49 (+11.36%)
Mutual labels:  weixin
vux-weixin
基于vue,vux,运行在微信上,增加了 http拦截器, auth权限 , jwt认证 , storage ,目录结构灵感来源于ngx-admin
Stars: ✭ 14 (-68.18%)
Mutual labels:  weixin
Computer-Security-algorithms
👨‍💻 Computer Security algorithms in C#
Stars: ✭ 48 (+9.09%)
Mutual labels:  md5
mpvue canvas drawer
[mpvue版本]微信小程序上canvas绘制图片助手,一个json就制作分享朋友圈图片
Stars: ✭ 43 (-2.27%)
Mutual labels:  weixin
SMmuiscPlay
🎼极简模式JavaScript音乐播放器组件,极简、小巧、无依赖、可定制,适用于手机页面,H5活动页,微信页面等的音乐播放支持
Stars: ✭ 40 (-9.09%)
Mutual labels:  weixin
wxpusher-sdk-python
微信消息实时推送服务[WxPusher]的Python版本sdk,可以通过API实时给个人微信推送消息。wechat pusher.
Stars: ✭ 156 (+254.55%)
Mutual labels:  weixin
miniapp
使用 Rax 语法(类 React)编写跨多端的小程序应用。
Stars: ✭ 65 (+47.73%)
Mutual labels:  miniapp
ioc-scanner
Search a filesystem for indicators of compromise (IoC).
Stars: ✭ 31 (-29.55%)
Mutual labels:  md5
weixin-redpack
微信红包 (wechat redpack, weixin redpack)
Stars: ✭ 39 (-11.36%)
Mutual labels:  weixin
BruteForce
A simple brute forcer written in GO for SHA1, SHA256, SHA512, MD5 and bcrypt
Stars: ✭ 49 (+11.36%)
Mutual labels:  md5
vitx
😃 Simple transform tool
Stars: ✭ 137 (+211.36%)
Mutual labels:  miniapp
go-wechat
💥weixin、wechat、微信公众平台、企业微信 golang/go sdk
Stars: ✭ 18 (-59.09%)
Mutual labels:  weixin
jgb
小程序渐进式编译框架
Stars: ✭ 21 (-52.27%)
Mutual labels:  miniapp

wxMD5

微信小程序 JavaScript MD5 实现。

使用方法

  1. 下载 md5.js 到项目中
  2. 全局或局部引入:import md5 from 'path/to/md5.js'

API

大部分时候,你只会用到前两种。如果不确定第2到4种的用法,建议用第一种即可

  1. 给定一个字符串,计算得出它的 MD5 哈希值
var hash = md5('value') // "2063c1608d6e0baf80249c42e2be5804"
  1. 给定一个字符串,计算得出它的 HMAC-MD5 哈希值
var hash = md5("value", "key") // "01433efd5f16327ea4b31144572c67f6"
  1. Calculate the raw MD5 hash of a given string value
var hash = md5("value", null, true)
  1. Calculate the raw HMAC-MD5 hash of a given string value and key
var hash = md5("value", "key", true)

感谢

JavaScript-MD5 GitHub stars:JavaScript MD5 implementation. Compatible with server-side environments like node.js, module loaders like RequireJS and all web browsers. 官网:https://blueimp.github.io/JavaScript-MD5/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].