mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 18:59:09 +00:00
if the N value is zero, send an empty seed to the server and expect an empty seed back. Don't use encryption.
This commit is contained in:
@ -89,6 +89,10 @@ public:
|
||||
{
|
||||
return BN_cmp(&m_number, &a.m_number);
|
||||
}
|
||||
bool isZero() const
|
||||
{
|
||||
return BN_is_zero(&m_number);
|
||||
}
|
||||
|
||||
void Div (const BigNum & a, dword b, dword * remainder)
|
||||
{
|
||||
|
Reference in New Issue
Block a user