rsa_encrypt 1.0.4 copy "rsa_encrypt: ^1.0.4" to clipboard
rsa_encrypt: ^1.0.4 copied to clipboard

outdated

Enable you to quickly implement rsa encryption in your flutter app, it covers everything from Generating key pairs, encrypt and decrypting strings.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'screens/home_screen.dart';

void main() => runApp(MyApp());

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

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Home(),
    );
  }
}
56
likes
0
pub points
93%
popularity

Publisher

unverified uploader

Enable you to quickly implement rsa encryption in your flutter app, it covers everything from Generating key pairs, encrypt and decrypting strings.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

asn1lib, flutter, pointycastle

More

Packages that depend on rsa_encrypt