protected override byte[] HashFinal()
 {
     State = 0;
     return(sha.HashFinal());
 }
Exemplo n.º 2
0
 protected byte[] HashFinal()
 {
     return(sha.HashFinal());
 }
Exemplo n.º 3
0
 public byte[] HashFinal()
 {
     return(sha.HashFinal());
 }
		public byte[] GetRunningHash ()
		{
			var copy = new SHA1Internal (this);
			return copy.HashFinal ();
		}