Last updated:
0 purchases
saveey
Saveey #
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
Usage
Documentation
Contributing
Issues and Bugs
License
Installation #
To use this package, add saveey as a dependency in your pubspec.yaml file.
dependencies:
saveey: ^1.0.0
copied to clipboard
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();
}
Instagram
LinkedIn
Feel free to follow me on Instagram and connect with me on LinkedIn for more updates and collaborations!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.