secure_compressor 1.0.3 copy "secure_compressor: ^1.0.3" to clipboard
secure_compressor: ^1.0.3 copied to clipboard

This is a Dart package that provides utilities for securely encrypting, decrypting, compressing, and decompressing string data using AES encryption and gzip compression

example/lib/main.dart

import 'package:example/secure_compression_example.dart';
import 'package:flutter/material.dart';

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

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

  // This is simple app to show how secure compress works

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      color: Colors.white,
      home: SecureCompressionExample()
    );
  }
}
4
likes
0
points
141
downloads

Publisher

unverified uploader

Weekly Downloads

This is a Dart package that provides utilities for securely encrypting, decrypting, compressing, and decompressing string data using AES encryption and gzip compression

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

encrypt, flutter, path_provider, share_plus

More

Packages that depend on secure_compressor