This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
ed448goldilocks
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix another couple undeclared / misnamed function bugs
master
Mike Hamburg
10 years ago
parent
a924ff4509
commit
bcf7c88da8
2 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/decaf.c
+1
-1
test/test_arithmetic.c
+ 1
- 1
src/decaf.c
View File
@@ -468,7 +468,7 @@ void decaf_point_double(decaf_point_t a, const decaf_point_t b) {
decaf_point_add(a,b,b);
decaf_point_add(a,b,b);
}
}
void decaf_copy (
void decaf_
point_
copy (
decaf_point_t a,
decaf_point_t a,
const decaf_point_t b
const decaf_point_t b
) {
) {
+ 1
- 1
test/test_arithmetic.c
View File
@@ -8,7 +8,7 @@
mpz_t mp_field;
mpz_t mp_field;
mpz_t mp_scalar_field;
mpz_t mp_scalar_field;
void decaf_scalar_print (
static
void decaf_scalar_print (
const char *descr,
const char *descr,
const decaf_scalar_t scalar
const decaf_scalar_t scalar
) {
) {
Write
Preview
Loading…
Cancel
Save