コード例 #1
0
ファイル: PS3_RSA.cs プロジェクト: Joey743/JakX-Server
 public override void Hash(byte[] input, out byte[] hash)
 {
     hash = PS3_RCQ.Hash(input, Context);
 }
コード例 #2
0
ファイル: PS3_RCQ.cs プロジェクト: Joey743/JakX-Server
 public bool Equals(PS3_RCQ b)
 {
     return(b.Context == this.Context && (b._key?.SequenceEqual(this._key) ?? false));
 }