crypto: remove unused unsafe random scalar generator
This commit is contained in:
parent
a9b83f5a6e
commit
ef649f998d
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue