Press on the image to return to the main documentation page.
F5Steg
Written by F. Leneuf-Magaud/Informatix
List of types:
F5Steg
F5Steg
Events:
Embedded(OutFileName As String)
ArrayExtracted(SecretMessage() As Byte)
StringExtracted(SecretMessage As String)
Members:
EmbedArray
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
()
As
Byte
,
JpgQuality
As
Int
,
EventPrefix
As
String
)
EmbedArray2
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
()
As
Byte
,
JpgQuality
As
Int
,
Password
As
String
,
EventPrefix
As
String
)
EmbedString
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
As
String
,
JpgQuality
As
Int
,
EventPrefix
As
String
)
EmbedString2
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
As
String
,
JpgQuality
As
Int
,
Password
As
String
,
EventPrefix
As
String
)
ExtractToArray
(
FileName
As
String
,
EventPrefix
As
String
)
ExtractToArray2
(
FileName
As
String
,
Password
As
String
,
EventPrefix
As
String
)
ExtractToString
(
FileName
As
String
,
EventPrefix
As
String
)
ExtractToString2
(
FileName
As
String
,
Password
As
String
,
EventPrefix
As
String
)
Members description:
EmbedArray
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
()
As
Byte
,
JpgQuality
As
Int
,
EventPrefix
As
String
)
Encrypts and hides the specified secret message in the given image (bmp, png or jpg).
The encryption is done with the application signature and the resulting image is a JPEG file.
When done, an Embedded event is raised.
EmbedArray2
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
()
As
Byte
,
JpgQuality
As
Int
,
Password
As
String
,
EventPrefix
As
String
)
Encrypts and hides the specified secret message in the given image (bmp, png or jpg).
The encryption is done with the specified password and the resulting image is a JPEG file.
When done, an Embedded event is raised.
EmbedString
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
As
String
,
JpgQuality
As
Int
,
EventPrefix
As
String
)
Encrypts and hides the specified secret message in the given image (bmp, png or jpg).
The encryption is done with the application signature and the resulting image is a JPEG file.
When done, an Embedded event is raised.
EmbedString2
(
InFileName
As
String
,
OutFileName
As
String
,
SecretMessage
As
String
,
JpgQuality
As
Int
,
Password
As
String
,
EventPrefix
As
String
)
Encrypts and hides the specified secret message in the given image (bmp, png or jpg).
The encryption is done with the specified password and the resulting image is a JPEG file.
When done, an Embedded event is raised.
ExtractToArray
(
FileName
As
String
,
EventPrefix
As
String
)
Extracts and decrypts the array of bytes hidden in the given JPEG file with the application signature.
When done, an ArrayExtracted event is raised.
ExtractToArray2
(
FileName
As
String
,
Password
As
String
,
EventPrefix
As
String
)
Extracts and decrypts the array of bytes hidden in the given JPEG file with the specified password.
When done, an ArrayExtracted event is raised.
ExtractToString
(
FileName
As
String
,
EventPrefix
As
String
)
Extracts and decrypts the string hidden in the given JPEG file with the application signature.
When done, a StringExtracted event is raised.
ExtractToString2
(
FileName
As
String
,
Password
As
String
,
EventPrefix
As
String
)
Extracts and decrypts the string hidden in the given JPEG file with the specified password.
When done, a StringExtracted event is raised.
Top