mirror of
https://github.com/monero-project/monero.git
synced 2026-01-30 08:14:54 +01:00
crypto: remove unused unsafe random scalar generator
This commit is contained in:
@@ -94,12 +94,6 @@ namespace crypto {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* generate a random 32-byte (256-bit) integer and copy it to res */
|
/* generate a random 32-byte (256-bit) integer and copy it to res */
|
||||||
static inline void random_scalar_not_thread_safe(ec_scalar &res) {
|
|
||||||
unsigned char tmp[64];
|
|
||||||
generate_random_bytes_not_thread_safe(64, tmp);
|
|
||||||
sc_reduce(tmp);
|
|
||||||
memcpy(&res, tmp, 32);
|
|
||||||
}
|
|
||||||
static inline void random_scalar(ec_scalar &res) {
|
static inline void random_scalar(ec_scalar &res) {
|
||||||
unsigned char tmp[64];
|
unsigned char tmp[64];
|
||||||
generate_random_bytes_thread_safe(64, tmp);
|
generate_random_bytes_thread_safe(64, tmp);
|
||||||
|
|||||||
Reference in New Issue
Block a user