System.Security.Cryptography.RIPEMD160Managed.HashFinal C# (CSharp) Method

HashFinal() protected method

Returns the computed RIPEMD160 hash as an array of bytes after all data has been written to the object.
The instance has been disposed.
protected HashFinal ( ) : byte[]
return byte[]
		protected override byte[] HashFinal() {
			CompressFinal(_Length);
			byte[] hash = new byte[20];
			if (!BitConverter.IsLittleEndian) {
				for (int i = 0; i < 5; i++) {
					for (int j = 0; j < 4; j++) {
						hash [i*4+j] = (byte)(_HashValue [i] >> j*8);
					}
				}
			} else {
				Buffer.BlockCopy (_HashValue, 0, hash, 0, 20);
			}
			return hash;
		}
		/// <summary>