Share via


Shake256.GetCurrentHash 메서드

정의

오버로드

GetCurrentHash(Int32)

개체를 초기 상태로 다시 설정하지 않고 메서드에 AppendData 대한 이전 호출에서 누적된 데이터의 해시를 검색합니다.

GetCurrentHash(Span<Byte>)

개체를 초기 상태로 다시 설정하지 않고 메서드에 대한 이전 호출 AppendData 에서 누적된 데이터에 대한 해시로 버퍼를 채웁니다.

GetCurrentHash(Int32)

Source:
Shake256.cs
Source:
Shake256.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:
Shake256.cs
Source:
Shake256.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))

매개 변수

destination
Span<Byte>

해시로 채울 버퍼입니다.

예외

개체가 이미 삭제되었습니다.

적용 대상