HMACSHA256.HashCore 方法 
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
| HashCore(ReadOnlySpan<Byte>) | 
						 将写入对象的数据路由到 HMAC 算法以计算 HMAC 。  | 
        	
| HashCore(Byte[], Int32, Int32) | 
						 将写入对象的数据路由到 HMAC 算法以计算 HMAC 。  | 
        	
HashCore(ReadOnlySpan<Byte>)
- Source:
 - HMACSHA256.cs
 
- Source:
 - HMACSHA256.cs
 
- Source:
 - HMACSHA256.cs
 
- Source:
 - HMACSHA256.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)
- Source:
 - HMACSHA256.cs
 
- Source:
 - HMACSHA256.cs
 
- Source:
 - HMACSHA256.cs
 
- Source:
 - HMACSHA256.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
 
字节数组中用作数据的字节数。