Méthode | Description | |
---|---|---|
SteganographyRead ( string path, uint startingPosition, |
Read a message using the Least Significant Bit Steganographic method.
|
|
SteganographyReadBytes ( string path, uint startingPosition, |
Read a message using the Least Significant Bit Steganographic method.
|
|
SteganographyWrite ( string path, uint startingPosition, byte message, |
Write a message using the Least Significant Bit Steganographic method.
|
|
SteganographyWrite ( string path, uint startingPosition, string message, |
Write a message using the Least Significant Bit Steganographic method.
|
public static SteganographyRead ( string path, uint startingPosition, |
||
path | string | The bitmap file to write to. |
startingPosition | uint | The starting byte address. |
mathset | The set to use to determine where to update the least significant bits. | |
passphrase | The passphrase for encrypting and decrypting the message text. | |
Résultat | string |
public static SteganographyReadBytes ( string path, uint startingPosition, |
||
path | string | The bitmap file to write to. |
startingPosition | uint | The starting byte address. |
mathset | The set to use to determine where to update the least significant bits. | |
Résultat | byte[] |
public static SteganographyWrite ( string path, uint startingPosition, byte message, |
||
path | string | The bitmap file to write to. |
startingPosition | uint | The starting byte address. |
message | byte | The message represented in a byte array. |
mathset | The set to use to determine where to update the least significant bits. | |
Résultat | void |
public static SteganographyWrite ( string path, uint startingPosition, string message, |
||
path | string | The bitmap file to write to. |
startingPosition | uint | The starting byte address. |
message | string | The message in Unicode characters. |
mathset | The set to use to determine where to update the least significant bits. | |
passphrase | The passphrase for encrypting and decrypting the message text. | |
Résultat | void |