We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fiat-crypto
u32
1 parent 60a1572 commit 08e2732Copy full SHA for 08e2732
curve25519-dalek/src/backend/serial/fiat_u32/field.rs
@@ -71,7 +71,7 @@ impl Zeroize for FieldElement2625 {
71
}
72
73
impl FieldElement2625 {
74
- pub(crate) const fn const_add_assign(&mut self, _rhs: &FieldElement2625) {
+ pub(crate) const fn const_add_assign(&mut self, rhs: &FieldElement2625) {
75
let mut result_loose = fiat_25519_loose_field_element([0; 10]);
76
fiat_25519_add(&mut result_loose, &self.0, &rhs.0);
77
fiat_25519_carry(&mut self.0, &result_loose);
0 commit comments