Kmac128.GetCurrentHash 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetCurrentHash(Int32) |
检索从之前调用 |
GetCurrentHash(Span<Byte>) |
使用从之前调用 |
GetCurrentHash(Int32)
- Source:
- Kmac128.cs
检索从之前调用 AppendData
方法中累积的数据的哈希,而无需将对象重置为其初始状态。
public:
cli::array <System::Byte> ^ GetCurrentHash(int outputLength);
public byte[] GetCurrentHash (int outputLength);
member this.GetCurrentHash : int -> byte[]
Public Function GetCurrentHash (outputLength As Integer) As Byte()
参数
- outputLength
- Int32
要生成的哈希的大小。
返回
Byte[]
计算的哈希。
例外
outputLength
为负数。
操作期间发生错误。
对象已释放。
另请参阅
适用于
GetCurrentHash(Span<Byte>)
- Source:
- Kmac128.cs
使用从之前调用 AppendData
方法中累积的数据哈希填充缓冲区,而无需将对象重置为其初始状态。
public:
void GetCurrentHash(Span<System::Byte> destination);
public void GetCurrentHash (Span<byte> destination);
member this.GetCurrentHash : Span<byte> -> unit
Public Sub GetCurrentHash (destination As Span(Of Byte))
参数
例外
操作期间发生错误。
对象已释放。