summaryrefslogtreecommitdiff
path: root/dh.h
diff options
context:
space:
mode:
Diffstat (limited to 'dh.h')
-rw-r--r--dh.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dh.h b/dh.h
index 933d94e..10e8d14 100644
--- a/dh.h
+++ b/dh.h
@@ -68,10 +68,10 @@ public:
Base::GeneratePublicKey(rng, privateKey2, publicKey2);
SecByteBlock agreedValue(this->AgreedValueLength()), agreedValue2(this->AgreedValueLength());
- this->Agree(agreedValue, privateKey, publicKey2);
- this->Agree(agreedValue2, privateKey2, publicKey);
+ bool agreed1 = this->Agree(agreedValue, privateKey, publicKey2);
+ bool agreed2 = this->Agree(agreedValue2, privateKey2, publicKey);
- if (agreedValue != agreedValue2)
+ if (!agreed1 || !agreed2 || agreedValue != agreedValue2)
throw SelfTestFailure(this->AlgorithmName() + ": pairwise consistency test failed");
}
}