Esempio n. 1
0
 bool AsymmetricKey::Equals(const AsymmetricKey &key) const
 {
   return this->GetByteArray() == key.GetByteArray();
 }
 /**
  * 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();
 }