Blake2Sharp.Blake2BCore.HashFinal C# (CSharp) Method

HashFinal() public method

public HashFinal ( ) : byte[]
return byte[]
        public byte[] HashFinal()
        {
            return HashFinal(false);
        }

Same methods

Blake2BCore::HashFinal ( bool isEndOfLayer ) : byte[]

Usage Example

Beispiel #1
0
 public override byte[] Finish()
 {
     byte[] array = core.HashFinal();
     if (outputSizeInBytes != array.Length)
     {
         byte[] array2 = new byte[outputSizeInBytes];
         Array.Copy(array, array2, array2.Length);
         return(array2);
     }
     return(array);
 }
All Usage Examples Of Blake2Sharp.Blake2BCore::HashFinal