mirror of
https://github.com/jakcron/nstool
synced 2024-11-14 17:56:39 +00:00
[fnd::ecdsa] Fix bug in sEcdsa240Point::operator=().
This commit is contained in:
parent
e7416b1c16
commit
bf5f90a4b8
1 changed files with 2 additions and 2 deletions
|
@ -21,8 +21,8 @@ namespace fnd
|
|||
|
||||
void operator=(const sEcdsa240Point& other)
|
||||
{
|
||||
memcpy(this->r, r, kEcdsa240Size);
|
||||
memcpy(this->s, s, kEcdsa240Size);
|
||||
memcpy(this->r, other.r, kEcdsa240Size);
|
||||
memcpy(this->s, other.s, kEcdsa240Size);
|
||||
}
|
||||
|
||||
bool operator==(const sEcdsa240Point& other) const
|
||||
|
|
Loading…
Reference in a new issue