Skip to content

Commit 70a30ae

Browse files
committed
remove footers
1 parent 4f8c353 commit 70a30ae

File tree

162 files changed

+0
-661
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+0
-661
lines changed

bn_error.c

-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,3 @@ const char *mp_error_to_string(int code)
3838
}
3939

4040
#endif
41-
42-
/* ref: $Format:%D$ */
43-
/* git commit: $Format:%H$ */
44-
/* commit time: $Format:%ai$ */

bn_fast_mp_invmod.c

-4
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,3 @@ int fast_mp_invmod(const mp_int *a, const mp_int *b, mp_int *c)
154154
return res;
155155
}
156156
#endif
157-
158-
/* ref: $Format:%D$ */
159-
/* git commit: $Format:%H$ */
160-
/* commit time: $Format:%ai$ */

bn_fast_mp_montgomery_reduce.c

-4
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,3 @@ int fast_mp_montgomery_reduce(mp_int *x, const mp_int *n, mp_digit rho)
167167
return MP_OKAY;
168168
}
169169
#endif
170-
171-
/* ref: $Format:%D$ */
172-
/* git commit: $Format:%H$ */
173-
/* commit time: $Format:%ai$ */

bn_fast_s_mp_mul_digs.c

-4
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,3 @@ int fast_s_mp_mul_digs(const mp_int *a, const mp_int *b, mp_int *c, int digs)
9898
return MP_OKAY;
9999
}
100100
#endif
101-
102-
/* ref: $Format:%D$ */
103-
/* git commit: $Format:%H$ */
104-
/* commit time: $Format:%ai$ */

bn_fast_s_mp_mul_high_digs.c

-4
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,3 @@ int fast_s_mp_mul_high_digs(const mp_int *a, const mp_int *b, mp_int *c, int dig
8989
return MP_OKAY;
9090
}
9191
#endif
92-
93-
/* ref: $Format:%D$ */
94-
/* git commit: $Format:%H$ */
95-
/* commit time: $Format:%ai$ */

bn_fast_s_mp_sqr.c

-4
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,3 @@ int fast_s_mp_sqr(const mp_int *a, mp_int *b)
105105
return MP_OKAY;
106106
}
107107
#endif
108-
109-
/* ref: $Format:%D$ */
110-
/* git commit: $Format:%H$ */
111-
/* commit time: $Format:%ai$ */

bn_mp_2expt.c

-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,3 @@ int mp_2expt(mp_int *a, int b)
3838
return MP_OKAY;
3939
}
4040
#endif
41-
42-
/* ref: $Format:%D$ */
43-
/* git commit: $Format:%H$ */
44-
/* commit time: $Format:%ai$ */

bn_mp_abs.c

-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,3 @@ int mp_abs(const mp_int *a, mp_int *b)
3333
return MP_OKAY;
3434
}
3535
#endif
36-
37-
/* ref: $Format:%D$ */
38-
/* git commit: $Format:%H$ */
39-
/* commit time: $Format:%ai$ */

bn_mp_add.c

-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,3 @@ int mp_add(const mp_int *a, const mp_int *b, mp_int *c)
4444
}
4545

4646
#endif
47-
48-
/* ref: $Format:%D$ */
49-
/* git commit: $Format:%H$ */
50-
/* commit time: $Format:%ai$ */

bn_mp_add_d.c

-4
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,3 @@ int mp_add_d(const mp_int *a, mp_digit b, mp_int *c)
103103
}
104104

105105
#endif
106-
107-
/* ref: $Format:%D$ */
108-
/* git commit: $Format:%H$ */
109-
/* commit time: $Format:%ai$ */

bn_mp_addmod.c

-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,3 @@ int mp_addmod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d)
3131
return res;
3232
}
3333
#endif
34-
35-
/* ref: $Format:%D$ */
36-
/* git commit: $Format:%H$ */
37-
/* commit time: $Format:%ai$ */

bn_mp_and.c

-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,3 @@ int mp_and(const mp_int *a, const mp_int *b, mp_int *c)
4848
return MP_OKAY;
4949
}
5050
#endif
51-
52-
/* ref: $Format:%D$ */
53-
/* git commit: $Format:%H$ */
54-
/* commit time: $Format:%ai$ */

bn_mp_clamp.c

-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,3 @@ void mp_clamp(mp_int *a)
3434
}
3535
}
3636
#endif
37-
38-
/* ref: $Format:%D$ */
39-
/* git commit: $Format:%H$ */
40-
/* commit time: $Format:%ai$ */

bn_mp_clear.c

-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,3 @@ void mp_clear(mp_int *a)
3434
}
3535
}
3636
#endif
37-
38-
/* ref: $Format:%D$ */
39-
/* git commit: $Format:%H$ */
40-
/* commit time: $Format:%ai$ */

bn_mp_clear_multi.c

-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,3 @@ void mp_clear_multi(mp_int *mp, ...)
2626
va_end(args);
2727
}
2828
#endif
29-
30-
/* ref: $Format:%D$ */
31-
/* git commit: $Format:%H$ */
32-
/* commit time: $Format:%ai$ */

bn_mp_cmp.c

-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,3 @@ int mp_cmp(const mp_int *a, const mp_int *b)
3333
}
3434
}
3535
#endif
36-
37-
/* ref: $Format:%D$ */
38-
/* git commit: $Format:%H$ */
39-
/* commit time: $Format:%ai$ */

bn_mp_cmp_d.c

-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,3 @@ int mp_cmp_d(const mp_int *a, mp_digit b)
3535
}
3636
}
3737
#endif
38-
39-
/* ref: $Format:%D$ */
40-
/* git commit: $Format:%H$ */
41-
/* commit time: $Format:%ai$ */

bn_mp_cmp_mag.c

-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,3 @@ int mp_cmp_mag(const mp_int *a, const mp_int *b)
4646
return MP_EQ;
4747
}
4848
#endif
49-
50-
/* ref: $Format:%D$ */
51-
/* git commit: $Format:%H$ */
52-
/* commit time: $Format:%ai$ */

bn_mp_cnt_lsb.c

-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,3 @@ int mp_cnt_lsb(const mp_int *a)
4444
}
4545

4646
#endif
47-
48-
/* ref: $Format:%D$ */
49-
/* git commit: $Format:%H$ */
50-
/* commit time: $Format:%ai$ */

bn_mp_complement.c

-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,3 @@ int mp_complement(const mp_int *a, mp_int *b)
1919
return (res == MP_OKAY) ? mp_sub_d(b, 1uL, b) : res;
2020
}
2121
#endif
22-
23-
/* ref: $Format:%D$ */
24-
/* git commit: $Format:%H$ */
25-
/* commit time: $Format:%ai$ */

bn_mp_copy.c

-4
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,3 @@ int mp_copy(const mp_int *a, mp_int *b)
5858
return MP_OKAY;
5959
}
6060
#endif
61-
62-
/* ref: $Format:%D$ */
63-
/* git commit: $Format:%H$ */
64-
/* commit time: $Format:%ai$ */

bn_mp_count_bits.c

-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,3 @@ int mp_count_bits(const mp_int *a)
3535
return r;
3636
}
3737
#endif
38-
39-
/* ref: $Format:%D$ */
40-
/* git commit: $Format:%H$ */
41-
/* commit time: $Format:%ai$ */

bn_mp_decr.c

-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,3 @@ int mp_decr(mp_int *a)
4141
return mp_sub_d(a, 1uL,a);
4242
}
4343
#endif
44-
45-
/* ref: $Format:%D$ */
46-
/* git commit: $Format:%H$ */
47-
/* commit time: $Format:%ai$ */

bn_mp_div.c

-4
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,3 @@ int mp_div(const mp_int *a, const mp_int *b, mp_int *c, mp_int *d)
291291
#endif
292292

293293
#endif
294-
295-
/* ref: $Format:%D$ */
296-
/* git commit: $Format:%H$ */
297-
/* commit time: $Format:%ai$ */

bn_mp_div_2.c

-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,3 @@ int mp_div_2(const mp_int *a, mp_int *b)
5959
return MP_OKAY;
6060
}
6161
#endif
62-
63-
/* ref: $Format:%D$ */
64-
/* git commit: $Format:%H$ */
65-
/* commit time: $Format:%ai$ */

bn_mp_div_2d.c

-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,3 @@ int mp_div_2d(const mp_int *a, int b, mp_int *c, mp_int *d)
7777
return MP_OKAY;
7878
}
7979
#endif
80-
81-
/* ref: $Format:%D$ */
82-
/* git commit: $Format:%H$ */
83-
/* commit time: $Format:%ai$ */

bn_mp_div_3.c

-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,3 @@ int mp_div_3(const mp_int *a, mp_int *c, mp_digit *d)
6969
}
7070

7171
#endif
72-
73-
/* ref: $Format:%D$ */
74-
/* git commit: $Format:%H$ */
75-
/* commit time: $Format:%ai$ */

bn_mp_div_d.c

-4
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,3 @@ int mp_div_d(const mp_int *a, mp_digit b, mp_int *c, mp_digit *d)
106106
}
107107

108108
#endif
109-
110-
/* ref: $Format:%D$ */
111-
/* git commit: $Format:%H$ */
112-
/* commit time: $Format:%ai$ */

bn_mp_dr_is_modulus.c

-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,3 @@ int mp_dr_is_modulus(const mp_int *a)
3434
}
3535

3636
#endif
37-
38-
/* ref: $Format:%D$ */
39-
/* git commit: $Format:%H$ */
40-
/* commit time: $Format:%ai$ */

bn_mp_dr_reduce.c

-4
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,3 @@ int mp_dr_reduce(mp_int *x, const mp_int *n, mp_digit k)
8686
return MP_OKAY;
8787
}
8888
#endif
89-
90-
/* ref: $Format:%D$ */
91-
/* git commit: $Format:%H$ */
92-
/* commit time: $Format:%ai$ */

bn_mp_dr_setup.c

-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,3 @@ void mp_dr_setup(const mp_int *a, mp_digit *d)
2222
}
2323

2424
#endif
25-
26-
/* ref: $Format:%D$ */
27-
/* git commit: $Format:%H$ */
28-
/* commit time: $Format:%ai$ */

bn_mp_exch.c

-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,3 @@ void mp_exch(mp_int *a, mp_int *b)
2424
*b = t;
2525
}
2626
#endif
27-
28-
/* ref: $Format:%D$ */
29-
/* git commit: $Format:%H$ */
30-
/* commit time: $Format:%ai$ */

bn_mp_export.c

-4
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,3 @@ int mp_export(void *rop, size_t *countp, int order, size_t size,
7878
}
7979

8080
#endif
81-
82-
/* ref: $Format:%D$ */
83-
/* git commit: $Format:%H$ */
84-
/* commit time: $Format:%ai$ */

bn_mp_expt_d.c

-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,3 @@ int mp_expt_d(const mp_int *a, mp_digit b, mp_int *c)
1919
}
2020

2121
#endif
22-
23-
/* ref: $Format:%D$ */
24-
/* git commit: $Format:%H$ */
25-
/* commit time: $Format:%ai$ */

bn_mp_expt_d_ex.c

-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,3 @@ int mp_expt_d_ex(const mp_int *a, mp_digit b, mp_int *c, int fast)
7373
return MP_OKAY;
7474
}
7575
#endif
76-
77-
/* ref: $Format:%D$ */
78-
/* git commit: $Format:%H$ */
79-
/* commit time: $Format:%ai$ */

bn_mp_exptmod.c

-4
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,3 @@ int mp_exptmod(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y)
103103
}
104104

105105
#endif
106-
107-
/* ref: $Format:%D$ */
108-
/* git commit: $Format:%H$ */
109-
/* commit time: $Format:%ai$ */

bn_mp_exptmod_fast.c

-5
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,3 @@ int mp_exptmod_fast(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y
312312
return err;
313313
}
314314
#endif
315-
316-
317-
/* ref: $Format:%D$ */
318-
/* git commit: $Format:%H$ */
319-
/* commit time: $Format:%ai$ */

bn_mp_exteuclid.c

-4
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,3 @@ int mp_exteuclid(const mp_int *a, const mp_int *b, mp_int *U1, mp_int *U2, mp_in
116116
return err;
117117
}
118118
#endif
119-
120-
/* ref: $Format:%D$ */
121-
/* git commit: $Format:%H$ */
122-
/* commit time: $Format:%ai$ */

bn_mp_fread.c

-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,3 @@ int mp_fread(mp_int *a, int radix, FILE *stream)
6262
#endif
6363

6464
#endif
65-
66-
/* ref: $Format:%D$ */
67-
/* git commit: $Format:%H$ */
68-
/* commit time: $Format:%ai$ */

bn_mp_fwrite.c

-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,3 @@ int mp_fwrite(const mp_int *a, int radix, FILE *stream)
4545
#endif
4646

4747
#endif
48-
49-
/* ref: $Format:%D$ */
50-
/* git commit: $Format:%H$ */
51-
/* commit time: $Format:%ai$ */

bn_mp_gcd.c

-4
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,3 @@ int mp_gcd(const mp_int *a, const mp_int *b, mp_int *c)
9898
return res;
9999
}
100100
#endif
101-
102-
/* ref: $Format:%D$ */
103-
/* git commit: $Format:%H$ */
104-
/* commit time: $Format:%ai$ */

bn_mp_get_bit.c

-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,3 @@ int mp_get_bit(const mp_int *a, int b)
3838
}
3939

4040
#endif
41-
42-
/* ref: $Format:%D$ */
43-
/* git commit: $Format:%H$ */
44-
/* commit time: $Format:%ai$ */

bn_mp_get_double.c

-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,3 @@ double mp_get_double(const mp_int *a)
2525
return (a->sign == MP_NEG) ? -d : d;
2626
}
2727
#endif
28-
29-
/* ref: $Format:%D$ */
30-
/* git commit: $Format:%H$ */
31-
/* commit time: $Format:%ai$ */

bn_mp_get_int.c

-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,3 @@ unsigned long mp_get_int(const mp_int *a)
1919
return mp_get_long(a) & 0xFFFFFFFFUL;
2020
}
2121
#endif
22-
23-
/* ref: $Format:%D$ */
24-
/* git commit: $Format:%H$ */
25-
/* commit time: $Format:%ai$ */

bn_mp_get_long.c

-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,3 @@ unsigned long mp_get_long(const mp_int *a)
3636
return res;
3737
}
3838
#endif
39-
40-
/* ref: $Format:%D$ */
41-
/* git commit: $Format:%H$ */
42-
/* commit time: $Format:%ai$ */

bn_mp_get_long_long.c

-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,3 @@ unsigned long long mp_get_long_long(const mp_int *a)
3636
return res;
3737
}
3838
#endif
39-
40-
/* ref: $Format:%D$ */
41-
/* git commit: $Format:%H$ */
42-
/* commit time: $Format:%ai$ */

bn_mp_grow.c

-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,3 @@ int mp_grow(mp_int *a, int size)
5050
return MP_OKAY;
5151
}
5252
#endif
53-
54-
/* ref: $Format:%D$ */
55-
/* git commit: $Format:%H$ */
56-
/* commit time: $Format:%ai$ */

bn_mp_import.c

-4
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,3 @@ int mp_import(mp_int *rop, size_t count, int order, size_t size,
6262
}
6363

6464
#endif
65-
66-
/* ref: $Format:%D$ */
67-
/* git commit: $Format:%H$ */
68-
/* commit time: $Format:%ai$ */

bn_mp_incr.c

-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,3 @@ int mp_incr(mp_int *a)
3636
return mp_add_d(a, 1uL,a);
3737
}
3838
#endif
39-
40-
/* ref: $Format:%D$ */
41-
/* git commit: $Format:%H$ */
42-
/* commit time: $Format:%ai$ */

0 commit comments

Comments
 (0)