flutter_stegify 0.0.5 flutter_stegify: ^0.0.5 copied to clipboard
Flutter plugin for steganography encoding and decoding files within an image using stegify API.
0.0.1 #
flutter-stegify
plugin offers an easy to use Dart
functions for steganography encodin/decoding.
The original implementation is in Go
and can be found here: stegify
void encode(String carrierFileName, String dataFileName, String resultFileName) async
void decode(String carrierFileName, String resultFileName) async
encode
performs steganography encoding of data file in carrier file and saves the steganography encoded product in new file.
decode
performs steganography decoding of data previously encoded by the Encode function.
The data is decoded from file carrier and it is saved in separate new file
NOTE: When
encoding
the file extension of result file is inherited from the carrier file and must not be specified explicitly in theresultFileName
argument.
NOTE: When
decoding
the result file won't have any file extension and therefore it should be specified explicitly in theresultFileName
argument.
0.0.3 #
Fix gradle setup.
0.0.4 #
Make the API async.
0.0.5 #
Improve usage documentation
In order to import this plugin correctly you need to add the following lines to your settings.gradle:
In the beginning add: include ':steg'
In the end of the file add: project(':steg').projectDir = new File(project(':flutter_stegify').projectDir, 'steg')
Example usage of the plugin can be found here.