公告板
版本库
filestore
活动
搜索
登录
main
/
locations
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
功能完善
admin
2021-11-25
70a344485bd0c9b68ac91f72ed23ec5bfa998b09
[locations.git]
/
lib
/
utils
/
encrypt_util.dart
1
2
3
4
5
6
7
8
import 'dart:convert';
import 'package:crypto/crypto.dart';
class EncryptUtil {
static String MD5(String data) {
return md5.convert(utf8.encode(data)).toString();
}
}