欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 财经 > 创投人物 > Flutter:encrypt插件 AES加密处理

Flutter:encrypt插件 AES加密处理

2024/12/2 18:49:25 来源:https://blog.csdn.net/qq_40745143/article/details/144084737  浏览:    关键词:Flutter:encrypt插件 AES加密处理

1、pubspec.yaml导入插件

cupertino_icons: ^1.0.8
# 密码加密
encrypt: 5.0.3

encrypt封装

import 'package:encrypt/encrypt.dart';
/// 加密类
class EncryptUtil {static final EncryptUtil _instance = EncryptUtil._internal();factory EncryptUtil() => _instance;EncryptUtil._internal() {encrypter = Encrypter(AES(key,mode: AESMode.cbc,padding: 'PKCS7',));}final key = Key.fromUtf8('aH5aH5bG0dC6aA3oN0cK4aU5jU6aK2lN');final iv = IV.fromUtf8('hK6eB4aE1aF3gH5q');late Encrypter encrypter;/// aes加密String aesEncode(String content) {final encrypted = encrypter.encrypt(content, iv: iv);return encrypted.base64;}
}

页面中使用

// 加密后
var password = EncryptUtil().aesEncode(passwordController.text);

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com