remove footers

This commit is contained in:
Daniel Mendler 2019-04-07 02:29:28 +02:00
parent 4f8c353293
commit 70a30ae7a7
No known key found for this signature in database
GPG Key ID: D88ADB2A2693CA43
162 changed files with 0 additions and 661 deletions

View File

@ -38,7 +38,3 @@ const char *mp_error_to_string(int code)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -154,7 +154,3 @@ LBL_ERR:
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -167,7 +167,3 @@ int fast_mp_montgomery_reduce(mp_int *x, const mp_int *n, mp_digit rho)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -98,7 +98,3 @@ int fast_s_mp_mul_digs(const mp_int *a, const mp_int *b, mp_int *c, int digs)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -89,7 +89,3 @@ int fast_s_mp_mul_high_digs(const mp_int *a, const mp_int *b, mp_int *c, int dig
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -105,7 +105,3 @@ int fast_s_mp_sqr(const mp_int *a, mp_int *b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -38,7 +38,3 @@ int mp_2expt(mp_int *a, int b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -33,7 +33,3 @@ int mp_abs(const mp_int *a, mp_int *b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -44,7 +44,3 @@ int mp_add(const mp_int *a, const mp_int *b, mp_int *c)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -103,7 +103,3 @@ int mp_add_d(const mp_int *a, mp_digit b, mp_int *c)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -31,7 +31,3 @@ int mp_addmod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d)
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -48,7 +48,3 @@ int mp_and(const mp_int *a, const mp_int *b, mp_int *c)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -34,7 +34,3 @@ void mp_clamp(mp_int *a)
} }
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -34,7 +34,3 @@ void mp_clear(mp_int *a)
} }
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -26,7 +26,3 @@ void mp_clear_multi(mp_int *mp, ...)
va_end(args); va_end(args);
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -33,7 +33,3 @@ int mp_cmp(const mp_int *a, const mp_int *b)
} }
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -35,7 +35,3 @@ int mp_cmp_d(const mp_int *a, mp_digit b)
} }
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -46,7 +46,3 @@ int mp_cmp_mag(const mp_int *a, const mp_int *b)
return MP_EQ; return MP_EQ;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -44,7 +44,3 @@ int mp_cnt_lsb(const mp_int *a)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -19,7 +19,3 @@ int mp_complement(const mp_int *a, mp_int *b)
return (res == MP_OKAY) ? mp_sub_d(b, 1uL, b) : res; return (res == MP_OKAY) ? mp_sub_d(b, 1uL, b) : res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -58,7 +58,3 @@ int mp_copy(const mp_int *a, mp_int *b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -35,7 +35,3 @@ int mp_count_bits(const mp_int *a)
return r; return r;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -41,7 +41,3 @@ int mp_decr(mp_int *a)
return mp_sub_d(a, 1uL,a); return mp_sub_d(a, 1uL,a);
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -291,7 +291,3 @@ LBL_Q:
#endif #endif
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -59,7 +59,3 @@ int mp_div_2(const mp_int *a, mp_int *b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -77,7 +77,3 @@ int mp_div_2d(const mp_int *a, int b, mp_int *c, mp_int *d)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -69,7 +69,3 @@ int mp_div_3(const mp_int *a, mp_int *c, mp_digit *d)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -106,7 +106,3 @@ int mp_div_d(const mp_int *a, mp_digit b, mp_int *c, mp_digit *d)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -34,7 +34,3 @@ int mp_dr_is_modulus(const mp_int *a)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -86,7 +86,3 @@ top:
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -22,7 +22,3 @@ void mp_dr_setup(const mp_int *a, mp_digit *d)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -24,7 +24,3 @@ void mp_exch(mp_int *a, mp_int *b)
*b = t; *b = t;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -78,7 +78,3 @@ int mp_export(void *rop, size_t *countp, int order, size_t size,
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -19,7 +19,3 @@ int mp_expt_d(const mp_int *a, mp_digit b, mp_int *c)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -73,7 +73,3 @@ int mp_expt_d_ex(const mp_int *a, mp_digit b, mp_int *c, int fast)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -103,7 +103,3 @@ int mp_exptmod(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -312,8 +312,3 @@ LBL_M:
return err; return err;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -116,7 +116,3 @@ LBL_ERR:
return err; return err;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -62,7 +62,3 @@ int mp_fread(mp_int *a, int radix, FILE *stream)
#endif #endif
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -45,7 +45,3 @@ int mp_fwrite(const mp_int *a, int radix, FILE *stream)
#endif #endif
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -98,7 +98,3 @@ LBL_U:
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -38,7 +38,3 @@ int mp_get_bit(const mp_int *a, int b)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -25,7 +25,3 @@ double mp_get_double(const mp_int *a)
return (a->sign == MP_NEG) ? -d : d; return (a->sign == MP_NEG) ? -d : d;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -19,7 +19,3 @@ unsigned long mp_get_int(const mp_int *a)
return mp_get_long(a) & 0xFFFFFFFFUL; return mp_get_long(a) & 0xFFFFFFFFUL;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -36,7 +36,3 @@ unsigned long mp_get_long(const mp_int *a)
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -36,7 +36,3 @@ unsigned long long mp_get_long_long(const mp_int *a)
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -50,7 +50,3 @@ int mp_grow(mp_int *a, int size)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -62,7 +62,3 @@ int mp_import(mp_int *rop, size_t count, int order, size_t size,
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -36,7 +36,3 @@ int mp_incr(mp_int *a)
return mp_add_d(a, 1uL,a); return mp_add_d(a, 1uL,a);
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -30,7 +30,3 @@ int mp_init(mp_int *a)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -28,7 +28,3 @@ int mp_init_copy(mp_int *a, const mp_int *b)
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -48,7 +48,3 @@ int mp_init_multi(mp_int *mp, ...)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -23,7 +23,3 @@ int mp_init_set(mp_int *a, mp_digit b)
return err; return err;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -22,7 +22,3 @@ int mp_init_set_int(mp_int *a, unsigned long b)
return mp_set_int(a, b); return mp_set_int(a, b);
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -32,7 +32,3 @@ int mp_init_size(mp_int *a, int size)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -34,7 +34,3 @@ int mp_invmod(const mp_int *a, const mp_int *b, mp_int *c)
#endif #endif
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -167,7 +167,3 @@ LBL_ERR:
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -100,7 +100,3 @@ LBL_ERR:
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -17,7 +17,3 @@ int mp_iseven(const mp_int *a)
return IS_EVEN(a) ? MP_YES : MP_NO; return IS_EVEN(a) ? MP_YES : MP_NO;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -17,7 +17,3 @@ int mp_isodd(const mp_int *a)
return IS_ODD(a) ? MP_YES : MP_NO; return IS_ODD(a) ? MP_YES : MP_NO;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -30,7 +30,3 @@ int mp_jacobi(const mp_int *a, const mp_int *n, int *c)
return mp_kronecker(a, n, c); return mp_kronecker(a, n, c);
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -165,7 +165,3 @@ LBL_ERR:
return err; return err;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -118,7 +118,3 @@ LBL_ERR:
return err; return err;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -138,7 +138,3 @@ LBL_KRON_0:
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -51,7 +51,3 @@ LBL_T:
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -62,7 +62,3 @@ int mp_lshd(mp_int *a, int b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -38,7 +38,3 @@ int mp_mod(const mp_int *a, const mp_int *b, mp_int *c)
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -45,7 +45,3 @@ int mp_mod_2d(const mp_int *a, int b, mp_int *c)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -17,7 +17,3 @@ int mp_mod_d(const mp_int *a, mp_digit b, mp_digit *c)
return mp_div_d(a, b, NULL, c); return mp_div_d(a, b, NULL, c);
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -50,7 +50,3 @@ int mp_montgomery_calc_normalization(mp_int *a, const mp_int *b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -109,7 +109,3 @@ int mp_montgomery_reduce(mp_int *x, const mp_int *n, mp_digit rho)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -49,7 +49,3 @@ int mp_montgomery_setup(const mp_int *n, mp_digit *rho)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -58,7 +58,3 @@ int mp_mul(const mp_int *a, const mp_int *b, mp_int *c)
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -73,7 +73,3 @@ int mp_mul_2(const mp_int *a, mp_int *b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -76,7 +76,3 @@ int mp_mul_2d(const mp_int *a, int b, mp_int *c)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -69,7 +69,3 @@ int mp_mul_d(const mp_int *a, mp_digit b, mp_int *c)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -31,7 +31,3 @@ int mp_mulmod(const mp_int *a, const mp_int *b, const mp_int *c, mp_int *d)
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -21,7 +21,3 @@ int mp_n_root(const mp_int *a, mp_digit b, mp_int *c)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -187,6 +187,3 @@ LBL_T1:
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -31,7 +31,3 @@ int mp_neg(const mp_int *a, mp_int *b)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -42,7 +42,3 @@ int mp_or(const mp_int *a, const mp_int *b, mp_int *c)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -54,7 +54,3 @@ LBL_T:
return err; return err;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -192,7 +192,3 @@ LBL_FU_ERR:
#endif #endif
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -41,7 +41,3 @@ int mp_prime_is_divisible(const mp_int *a, int *result)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -363,7 +363,3 @@ LBL_B:
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -97,7 +97,3 @@ LBL_N1:
return err; return err;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -150,7 +150,3 @@ LBL_ERR:
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -50,7 +50,3 @@ int mp_prime_rabin_miller_trials(int size)
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -129,7 +129,3 @@ error:
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -405,7 +405,3 @@ LBL_LS_ERR:
#endif #endif
#endif #endif
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -69,7 +69,3 @@ int mp_radix_size(const mp_int *a, int radix, int *size)
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -29,7 +29,3 @@ const uint8_t mp_s_rmap_reverse[] = {
}; };
const size_t mp_s_rmap_reverse_sz = sizeof(mp_s_rmap_reverse); const size_t mp_s_rmap_reverse_sz = sizeof(mp_s_rmap_reverse);
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -216,7 +216,3 @@ int mp_rand(mp_int *a, int digits)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -84,7 +84,3 @@ int mp_read_radix(mp_int *a, const char *str, int radix)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -32,7 +32,3 @@ int mp_read_signed_bin(mp_int *a, const unsigned char *b, int c)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -46,7 +46,3 @@ int mp_read_unsigned_bin(mp_int *a, const unsigned char *b, int c)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -91,7 +91,3 @@ CLEANUP:
return res; return res;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -54,7 +54,3 @@ LBL_ERR:
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -55,7 +55,3 @@ LBL_ERR:
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

View File

@ -38,7 +38,3 @@ int mp_reduce_2k_setup(const mp_int *a, mp_digit *d)
return MP_OKAY; return MP_OKAY;
} }
#endif #endif
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */

Some files were not shown because too many files have changed in this diff Show More