src/crypto/ed25519_types.cpp¶
Namespaces¶
| Name |
|---|
| sgns |
| sgns::crypto |
Source code¶
#include "ed25519_types.hpp"
namespace sgns::crypto {
bool ED25519Keypair::operator==(const ED25519Keypair &other) const {
return private_key == other.private_key && public_key == other.public_key;
}
bool ED25519Keypair::operator!=(const ED25519Keypair &other) const {
return !(*this == other);
}
}
Updated on 2026-03-04 at 13:10:44 -0800