Lines Matching defs:other
80 SignInfo::SignInfo(const SignInfo& other)
82 this->saltSize = other.saltSize;
83 this->sigSize = other.sigSize;
84 this->flags = other.flags;
85 this->dataSize = other.dataSize;
86 this->salt = other.salt;
87 this->extensionNum = other.extensionNum;
88 this->extensionOffset = other.extensionOffset;
89 this->signature = other.signature;
90 this->zeroPadding = other.zeroPadding;
91 for (MerkleTreeExtension* ext : other.extensionList) {
97 SignInfo& SignInfo::operator=(const SignInfo& other)
99 if (this == &other) {
102 this->saltSize = other.saltSize;
103 this->sigSize = other.sigSize;
104 this->flags = other.flags;
105 this->dataSize = other.dataSize;
106 this->salt = other.salt;
107 this->extensionNum = other.extensionNum;
108 this->extensionOffset = other.extensionOffset;
109 this->signature = other.signature;
110 this->zeroPadding = other.zeroPadding;
111 for (Extension* ext : other.extensionList) {