GetHashValue() public method

public GetHashValue ( ) : byte[]
return byte[]
Ejemplo n.º 1
0
 public byte[] GetHashValue()
 {
     if (otherHash != null)
     {
         return(otherHash.GetHashValue());
     }
     return(sha1Hash.GetOctets());
 }
Ejemplo n.º 2
0
 public byte[] GetHashValue()
 {
     return(otherHash == null
                         ?       sha1Hash.GetOctets()
                         :       otherHash.GetHashValue());
 }