HMACMD5.HashCore 方法

定義

多載

HashCore(ReadOnlySpan<Byte>)

將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。

HashCore(Byte[], Int32, Int32)

將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。

HashCore(ReadOnlySpan<Byte>)

來源:
HMACMD5.cs
來源:
HMACMD5.cs
來源:
HMACMD5.cs

將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。

protected:
 override void HashCore(ReadOnlySpan<System::Byte> source);
protected override void HashCore (ReadOnlySpan<byte> source);
override this.HashCore : ReadOnlySpan<byte> -> unit
Protected Overrides Sub HashCore (source As ReadOnlySpan(Of Byte))

參數

source
ReadOnlySpan<Byte>

要用來計算 HMAC 的輸入。

適用於

HashCore(Byte[], Int32, Int32)

來源:
HMACMD5.cs
來源:
HMACMD5.cs
來源:
HMACMD5.cs

將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。

protected:
 override void HashCore(cli::array <System::Byte> ^ rgb, int ib, int cb);
protected override void HashCore (byte[] rgb, int ib, int cb);
override this.HashCore : byte[] * int * int -> unit
Protected Overrides Sub HashCore (rgb As Byte(), ib As Integer, cb As Integer)

參數

rgb
Byte[]

要用來計算 HMAC 的輸入。

ib
Int32

位元組陣列中的座標,從此處開始使用資料。

cb
Int32

位元組陣列中要用作資料的位元組數目。

適用於