md5Sum(data: string | ArrayBuffer): string
Parameter | Type | Description |
data | string or ArrayBuffer. | Data to be encrypted. |
Type | Description |
string | Encrypted results. |
import util from 'pts/util';export default function () {console.log(util.md5Sum('12345')); // 827ccb0eea8a706c4c34a16891f84e7b}