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(),
    );
  }
}
61
likes
0
points
4.6k
downloads

Publisher

unverified uploader

Weekly Downloads

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