saveey 1.0.0+2 copy "saveey: ^1.0.0+2" to clipboard
saveey: ^1.0.0+2 copied to clipboard

outdated

A comprehensive and secure Saveey package for Flutter, providing robust encryption and decryption capabilities for key-value storage. Safeguard your sensitive data with advanced cryptographic techniqu [...]

Saveey #

Flutter Version Package Version License

A comprehensive and secure saveey package for Flutter, providing robust encryption and decryption capabilities for key-value storage.

Features #

  • Advanced Encryption: Implement advanced cryptographic techniques to secure your data.
  • Seamless Integration: Easily integrate Saveey Flutter into your Flutter applications.
  • Confidentiality and Integrity: Ensure the confidentiality and integrity of your sensitive data.
  • Key-Value Storage: Effortlessly encrypt and decrypt key-value pairs within your application.

Table of Contents #

Installation #

To use this package, add saveey as a dependency in your pubspec.yaml file.

dependencies:
  saveey: ^1.0.0

Usage #

import 'package:saveey/saveey.dart';

void main() async { // Initialize Saveey with your own encryption key and file name await Saveey.initialize( encryptionKey: 'provide_encryption_key', fileName: 'provide_file_name', );

// Store a key-value pair await Saveey.setValue('username', 'john_doe');

// Retrieve the value associated with the key final username = Saveey.getValue('username'); print('Username: $username');

// Store a list of models (e.g., User models) with optional expiration time final List

// Retrieve the list of users final List

// Remove a key-value pair await Saveey.removeValue('username');

// Clear all stored key-value pairs await Saveey.clear(); }

Feel free to follow me on Instagram and connect with me on LinkedIn for more updates and collaborations!

2
likes
0
points
1
downloads

Publisher

unverified uploader

Weekly Downloads

A comprehensive and secure Saveey package for Flutter, providing robust encryption and decryption capabilities for key-value storage. Safeguard your sensitive data with advanced cryptographic techniques, seamlessly integrated into your Flutter applications. Ensure the confidentiality and integrity of your data using Saveey Flutter.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

crypto, encrypt, flutter, path_provider

More

Packages that depend on saveey