GetHashValue() public method

public GetHashValue ( ) : byte[]
return byte[]
コード例 #1
0
ファイル: OtherHash.cs プロジェクト: smdx24/CPI-Source-Code
 public byte[] GetHashValue()
 {
     if (otherHash != null)
     {
         return(otherHash.GetHashValue());
     }
     return(sha1Hash.GetOctets());
 }
コード例 #2
0
 public byte[] GetHashValue()
 {
     return(otherHash == null
                         ?       sha1Hash.GetOctets()
                         :       otherHash.GetHashValue());
 }