Write() public method

Calls BIO_write()
public Write ( byte buf ) : void
buf byte
return void
コード例 #1
0
ファイル: Cipher.cs プロジェクト: langhuihui/csharprtmp
		/// <summary>
		/// Returns the cipher's LongName
		/// </summary>
		/// <param name="bio"></param>
		public override void Print(BIO bio)
		{
			bio.Write("CipherContext: " + this.cipher.LongName);
		}
コード例 #2
0
ファイル: MessageDigest.cs プロジェクト: wow4all/mooege
		/// <summary>
		/// Prints MessageDigest
		/// </summary>
		/// <param name="bio"></param>
		public override void Print(BIO bio)
		{
			bio.Write("MessageDigest");
		}
コード例 #3
0
ファイル: Cipher.cs プロジェクト: langhuihui/csharprtmp
		/// <summary>
		/// Prints the LongName of this cipher.
		/// </summary>
		/// <param name="bio"></param>
		public override void Print(BIO bio)
		{
			bio.Write(this.LongName);
		}
コード例 #4
0
ファイル: MessageDigest.cs プロジェクト: wow4all/mooege
		/// <summary>
		/// Prints the long name
		/// </summary>
		/// <param name="bio"></param>
		public override void Print(BIO bio)
		{
			bio.Write("MessageDigestContext: " + this.md.LongName);
		}