Codebase list libcryptx-perl / 831e872
ltm sync Karel Miko 5 years ago
2 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
1313 */
1414
1515 /* chars used in radix conversions */
16 const char *mp_s_rmap = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/";
16 const char *const mp_s_rmap = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/";
1717 const unsigned char mp_s_rmap_reverse[] = {
1818 0xff, 0xff, 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f, /* ()*+,-./ */
1919 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 01234567 */
7272 int s_mp_exptmod(const mp_int *G, const mp_int *X, const mp_int *P, mp_int *Y, int redmode);
7373 void bn_reverse(unsigned char *s, int len);
7474
75 extern const char *mp_s_rmap;
75 extern const char *const mp_s_rmap;
7676 extern const unsigned char mp_s_rmap_reverse[];
7777 extern const size_t mp_s_rmap_reverse_sz;
7878