GetHashValue() public méthode

public GetHashValue ( ) : byte[]
Résultat byte[]
Exemple #1
0
 public byte[] GetHashValue()
 {
     if (otherHash != null)
     {
         return(otherHash.GetHashValue());
     }
     return(sha1Hash.GetOctets());
 }
Exemple #2
0
 public byte[] GetHashValue()
 {
     return(otherHash == null
                         ?       sha1Hash.GetOctets()
                         :       otherHash.GetHashValue());
 }