コード例 #1
0
ファイル: AsymmetricKey.cpp プロジェクト: ASchurman/Dissent
 bool AsymmetricKey::Equals(const AsymmetricKey &key) const
 {
   return this->GetByteArray() == key.GetByteArray();
 }
コード例 #2
0
 /**
  * Returns the not equivalence of the given key with the current key
  * @param key the given key
  */
 virtual bool operator!=(const AsymmetricKey &key) const
 {
   return this->GetByteArray() != key.GetByteArray();
 }