C# 클래스 Incog.Steganography.BitmapSteganography

Bitmap Steganography tools
파일 보기 프로젝트 열기: SimWitty/Incog

공개 메소드들

메소드 설명
SteganographyRead ( string path, uint startingPosition, ChannelTools mathset, SecureString passphrase ) : string

Read a message using the Least Significant Bit Steganographic method.

SteganographyReadBytes ( string path, uint startingPosition, ChannelTools mathset ) : byte[]

Read a message using the Least Significant Bit Steganographic method.

SteganographyWrite ( string path, uint startingPosition, byte message, ChannelTools mathset ) : void

Write a message using the Least Significant Bit Steganographic method.

SteganographyWrite ( string path, uint startingPosition, string message, ChannelTools mathset, SecureString passphrase ) : void

Write a message using the Least Significant Bit Steganographic method.

메소드 상세

SteganographyRead() 공개 정적인 메소드

Read a message using the Least Significant Bit Steganographic method.
public static SteganographyRead ( string path, uint startingPosition, ChannelTools mathset, SecureString passphrase ) : string
path string The bitmap file to write to.
startingPosition uint The starting byte address.
mathset Incog.Tools.ChannelTools The set to use to determine where to update the least significant bits.
passphrase System.Security.SecureString The passphrase for encrypting and decrypting the message text.
리턴 string

SteganographyReadBytes() 공개 정적인 메소드

Read a message using the Least Significant Bit Steganographic method.
public static SteganographyReadBytes ( string path, uint startingPosition, ChannelTools mathset ) : byte[]
path string The bitmap file to write to.
startingPosition uint The starting byte address.
mathset Incog.Tools.ChannelTools The set to use to determine where to update the least significant bits.
리턴 byte[]

SteganographyWrite() 공개 정적인 메소드

Write a message using the Least Significant Bit Steganographic method.
public static SteganographyWrite ( string path, uint startingPosition, byte message, ChannelTools mathset ) : void
path string The bitmap file to write to.
startingPosition uint The starting byte address.
message byte The message represented in a byte array.
mathset Incog.Tools.ChannelTools The set to use to determine where to update the least significant bits.
리턴 void

SteganographyWrite() 공개 정적인 메소드

Write a message using the Least Significant Bit Steganographic method.
public static SteganographyWrite ( string path, uint startingPosition, string message, ChannelTools mathset, SecureString passphrase ) : void
path string The bitmap file to write to.
startingPosition uint The starting byte address.
message string The message in Unicode characters.
mathset Incog.Tools.ChannelTools The set to use to determine where to update the least significant bits.
passphrase System.Security.SecureString The passphrase for encrypting and decrypting the message text.
리턴 void