md5

解释: 在小程序开发中,没有window的概念,导致市面上很多绑定DOM或者BOM的三方库无法使用,smt-md5是官方提供的md5和base64算法库。小程序种使用三方npm包方法,见npm使用说明

方法参数

encodeHex 方法参数说明:

参数类型必填默认值说明
stringstring要转换的字符串

encodeBase64 方法参数说明:

参数类型必填默认值说明
stringstring要转换的字符串

示例

扫码体验

md5 - 图1请使用百度APP扫码

图片示例

md5 - 图2

md5 - 图3

md5 - 图4

代码示例

在开发者工具中预览效果

  1. npm install @smt-lib/md5
  1. import {encodeHex} from '@smt-lib/md5';
  2. const string = 'abcdefghigklmn';
  3. const md5edString = encodeHex(string);

代码示例

在开发者工具中预览效果

  1. import {encodeBase64} from '@smt-lib/md5';
  2. const string = 'abcdefghigklmn';
  3. const base64edString = encodeBase64(string);