ccms_des 0.0.2 copy "ccms_des: ^0.0.2" to clipboard
ccms_des: ^0.0.2 copied to clipboard

A new flutter plugin project.

ccms_des #

DES加密方法,不使用向量,只使用key进行加密

效果图 #

C6890CFF-AE6F-415B-9412-9DBDC244BC27

Getting Started #

Add dependency #

dependencies:
  flutter_des: ^0.0.2  #latest version

Example #

import 'package:ccms_des/ccms_des.dart';

void example() async {
  const _string = "testMessage";
  const _key = "12345678";

  var encrypt = await CcmsDes.encryptToHex(_string, _key);
  var decrypt = await CcmsDes.decryptToHex(_string, _key);
}
0
likes
110
pub points
0%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on ccms_des