Home | History | Annotate | Download | only in dropbear

Lines Matching refs:mp

31 void m_mp_init(mp_int *mp) {
33 if (mp_init(mp) != MP_OKAY) {
40 void m_mp_init_multi(mp_int *mp, ...)
42 mp_int* cur_arg = mp;
45 va_start(args, mp); /* init args to next argument from caller */
55 void bytes_to_mp(mp_int *mp, const unsigned char* bytes, unsigned int len) {
57 if (mp_read_unsigned_bin(mp, (unsigned char*)bytes, len) != MP_OKAY) {
62 /* hash the ssh representation of the mp_int mp */
63 void sha1_process_mp(hash_state *hs, mp_int *mp) {
70 buf_putmpint(buf, mp);