hl_des 2.0.2 copy "hl_des: ^2.0.2" to clipboard
hl_des: ^2.0.2 copied to clipboard

A new flutter plugin project.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:hl_des/hl_des.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _decrypted = 'Unknown';

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String decrypted;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      const string = "CadhhzTvRxYwtue89uSJ4//SXnIjayCqHSInPVTHS1YiIRANEYJh/q2WMGJ9kD/uwG3fu/F9jFs+Busg8cRu2FFuWt786Cw6/eHw0OumHV5wjQdGvkaLUkpQ2d4EOzOiwSeTAFzmfScY4RHEvUMR1JW23+7y6e3Mhek/vnBv3ltN4ouRERinK8Rntd5G8suhPXNvEX3eVmxi5FTBlSfW4bOTODzOZo2DRq+gyjiFSKQ="; // base64
      const key = 'MVEyVzNFNFI='; // base64
      const iv = 'Gis8TV5veJA='; // base64

      decrypted = await HlDes.desDecrypt(data: string, iv: iv, key: key);
      print("decrypted = $decrypted");

      final encrypted = await HlDes.desEncrypt(data: decrypted, iv: iv, key: key);
      print("encrypted = $encrypted");
    } on PlatformException {
      decrypted = 'Failed to decrypted';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _decrypted = decrypted;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on: $_decrypted\n'),
        ),
      ),
    );
  }
}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on hl_des