HMACSHA384.HashCore 方法
本文內容
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
HashCore(ReadOnlySpan<Byte>) |
將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。 |
HashCore(Byte[], Int32, Int32) |
將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。 |
將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。
protected:
override void HashCore(ReadOnlySpan<System::Byte> source);
C#
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 的輸入。
適用於
.NET 10 及其他版本
產品 | 版本 |
---|---|
.NET | Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Standard | 2.1 |
將寫入物件的資料路由傳送至 HMAC 演算法,以用來計算 HMAC。
protected:
override void HashCore(cli::array <System::Byte> ^ rgb, int ib, int cb);
C#
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
位元組陣列中要用作資料的位元組數目。
適用於
.NET 10 及其他版本
產品 | 版本 |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Standard | 1.3, 1.4, 1.6, 2.1 |