aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorstoffu <stoffu@protonmail.ch>2018-03-05 17:20:36 +0900
committerstoffu <stoffu@protonmail.ch>2018-03-14 21:00:17 +0900
commitb2d23b189efaafe89082a9f14e376c2cbad42f40 (patch)
tree30f9dfff37773d22e2d6ccbd3803f8cae60b608e /tests
parentkeypair::generate: always require hw::device to avoid possible mistake (diff)
downloadmonero-b2d23b189efaafe89082a9f14e376c2cbad42f40.tar.xz
crypto: revert odd namespace changes made in #3303
Diffstat (limited to 'tests')
-rw-r--r--tests/crypto/crypto.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/crypto/crypto.cpp b/tests/crypto/crypto.cpp
index 90212bd0b..6a1dd1b29 100644
--- a/tests/crypto/crypto.cpp
+++ b/tests/crypto/crypto.cpp
@@ -33,7 +33,7 @@
#include "crypto-tests.h"
bool check_scalar(const crypto::ec_scalar &scalar) {
- return sc_check(crypto::operator &(scalar)) == 0;
+ return crypto::sc_check(crypto::operator &(scalar)) == 0;
}
void random_scalar(crypto::ec_scalar &res) {
@@ -45,13 +45,13 @@ void hash_to_scalar(const void *data, std::size_t length, crypto::ec_scalar &res
}
void hash_to_point(const crypto::hash &h, crypto::ec_point &res) {
- ge_p2 point;
- ge_fromfe_frombytes_vartime(&point, reinterpret_cast<const unsigned char *>(&h));
- ge_tobytes(crypto::operator &(res), &point);
+ crypto::ge_p2 point;
+ crypto::ge_fromfe_frombytes_vartime(&point, reinterpret_cast<const unsigned char *>(&h));
+ crypto::ge_tobytes(crypto::operator &(res), &point);
}
void hash_to_ec(const crypto::public_key &key, crypto::ec_point &res) {
- ge_p3 tmp;
+ crypto::ge_p3 tmp;
crypto::hash_to_ec(key, tmp);
- ge_p3_tobytes(crypto::operator &(res), &tmp);
+ crypto::ge_p3_tobytes(crypto::operator &(res), &tmp);
}