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

Flutter Plugin for application to preform series of security related functions

example/lib/main.dart

import 'package:flutter/material.dart';

import 'rsa.dart';
import 'password.dart';

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

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: DefaultTabController(
        length: 2,
        child: Scaffold(
          appBar: AppBar(
            title: const Text('Plugin example app'),
            bottom: TabBar(
              tabs: [
                Padding(padding: EdgeInsets.all(15), child: Text('Password')),
                Padding(padding: EdgeInsets.all(15), child: Text('RSA')),
              ],
            ),
          ),
          body: TabBarView(
            children: [PWDemo(), RSADemo()],
          ),
        ),
      ),
    );
  }
}
0
likes
40
points
37
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter Plugin for application to preform series of security related functions

Homepage

License

MIT (license)

Dependencies

asn1lib, convert, flutter, pointycastle

More

Packages that depend on app_security_kit

Packages that implement app_security_kit