flutter_stegify 0.2.0 flutter_stegify: ^0.2.0 copied to clipboard
Flutter plugin for steganography encoding and decoding files within an image using stegify API.
stegify-flutter-plugin #
Flutter plugin for fully transparent hiding any file within an image using stegify API. This technique is known as LSB (Least Significant Bit) steganography
Demonstration #
Carrier | Data | Result |
---|---|---|
The Result
file contains the Data
file hidden in it. And as you can see it is fully transparent.
Usage #
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
This plugin uses go-mobile for generating platform native bindings
and exposes Dart
functions which can be used directly in your flutter mobile application!
Importing in your flutter application #
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.
API #
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: The result file won't have any file extension and therefore it should be specified explicitly in the
resultFileName
argument.
Prerequisites - Prior version 0.2.0 #
This steps should not be required starting with version 0.2.0
Since flutter-stegify
is exposing Go
implementation through flutter plugin some Go
dependencies are required:
Go
is installed- go-mobile is installed. Make sure to download the sources in your
GOPATH
as well with:GO111MODULE=off go get golang.org/x/mobile/cmd/gomobile
stegify
sources are present in yourGOPATH
, in order to pullstegify
executeGO111MODULE=off go get github.com/DimitarPetrov/stegify
NOTE:
stegify
does not rely on any external dependencies, therefore it is not a module. This means thatgo mod
support should be explicity disabled by an environment variable:export GO111MODULE=off
Disclaimer #
If carrier file is in jpeg or jpg format, after encoding the result file image will be png encoded (therefore it may be bigger in size) despite of file extension inherited from the original carrier file (which is .jpeg or .jpg).