Formatting
This commit is contained in:
parent
3eb1096bfb
commit
ff17c72fe8
|
@ -20,8 +20,7 @@
|
||||||
void p1_mul(blst_p1 *out, const blst_p1 *a, const blst_fr *b) {
|
void p1_mul(blst_p1 *out, const blst_p1 *a, const blst_fr *b) {
|
||||||
blst_scalar s;
|
blst_scalar s;
|
||||||
blst_scalar_from_fr(&s, b);
|
blst_scalar_from_fr(&s, b);
|
||||||
//blst_p1_mult(out, a, s.b, 8 * sizeof(blst_scalar));
|
blst_p1_mult(out, a, s.b, 8 * sizeof(blst_scalar));
|
||||||
blst_p1_mult(out, a, s.b, 256);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void p1_sub(blst_p1 *out, const blst_p1 *a, const blst_p1 *b) {
|
void p1_sub(blst_p1 *out, const blst_p1 *a, const blst_p1 *b) {
|
||||||
|
|
Loading…
Reference in New Issue