GetHashValue() 공개 메소드

public GetHashValue ( ) : byte[]
리턴 byte[]
예제 #1
0
 public byte[] GetHashValue()
 {
     if (otherHash != null)
     {
         return(otherHash.GetHashValue());
     }
     return(sha1Hash.GetOctets());
 }
예제 #2
0
 public byte[] GetHashValue()
 {
     return(otherHash == null
                         ?       sha1Hash.GetOctets()
                         :       otherHash.GetHashValue());
 }