C# 클래스 Incog.Steganography.WebPageSteganography

The steganography web page class allows reading and writing short messages into HTML.
파일 보기 프로젝트 열기: SimWitty/Incog 1 사용 예제들

공개 메소드들

메소드 설명
GetBytes ( ) : byte[]

Get the HTML bytes with the steganographic message.

ReadValue ( ) : string

Read -- decrypt, decode, and display the steganographic message.

WebPageSteganography ( FileInfo file, SecureString passphrase ) : System

Initializes a new instance of the WebPageSteganography class.

WebPageSteganography ( byte html, SecureString passphrase ) : System

Initializes a new instance of the WebPageSteganography class.

WriteValue ( string value ) : void

Write -- encode, encrypt, and hide the steganographic message.

비공개 메소드들

메소드 설명
CopyOriginalToStego ( ) : void

Copy the original bytes to the steganography bytes.

EmbedBytesInPage ( byte buffer ) : void

Write the bytes in the buffer to the positions within the byte array.

메소드 상세

GetBytes() 공개 메소드

Get the HTML bytes with the steganographic message.
public GetBytes ( ) : byte[]
리턴 byte[]

ReadValue() 공개 메소드

Read -- decrypt, decode, and display the steganographic message.
public ReadValue ( ) : string
리턴 string

WebPageSteganography() 공개 메소드

Initializes a new instance of the WebPageSteganography class.
public WebPageSteganography ( FileInfo file, SecureString passphrase ) : System
file System.IO.FileInfo A file containing HTML.
passphrase System.Security.SecureString The passphrase to use for encryption and decryption.
리턴 System

WebPageSteganography() 공개 메소드

Initializes a new instance of the WebPageSteganography class.
public WebPageSteganography ( byte html, SecureString passphrase ) : System
html byte The HTML from the stream byte array.
passphrase System.Security.SecureString The passphrase to use for encryption and decryption.
리턴 System

WriteValue() 공개 메소드

Write -- encode, encrypt, and hide the steganographic message.
public WriteValue ( string value ) : void
value string The text value to write into the page.
리턴 void