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

Super-fast AES-256 file encryption for Flutter with chunk-based processing for large files.

example/lib/main.dart

import 'package:file_encrypter_example/home_page.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const EncrypterApp());
}

class EncrypterApp extends StatelessWidget {
  const EncrypterApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'File Encrypter Demo',
      theme: ThemeData(
        colorSchemeSeed: Colors.amber,
        scaffoldBackgroundColor: Colors.white,
      ),
      debugShowCheckedModeBanner: false,
      home: const HomePage(),
    );
  }
}
8
likes
160
points
152
downloads

Publisher

verified publisheracmesoftware.com

Weekly Downloads

Super-fast AES-256 file encryption for Flutter with chunk-based processing for large files.

Homepage
Repository (GitHub)
View/report issues

Topics

#file #encryption #decryption #cryptography #aes

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on file_encrypter