Lines Matching defs:tmp
229 unsigned char tmp[MAX_LEN];
235 len = t_fromb64(tmp, sizeof(tmp), v);
238 if (NULL == (vinfo->v = BN_bin2bn(tmp, len, NULL)))
240 len = t_fromb64(tmp, sizeof(tmp), s);
243 vinfo->s = BN_bin2bn(tmp, len, NULL);
315 unsigned char tmp[MAX_LEN];
322 len = t_fromb64(tmp, sizeof(tmp), ch);
329 if ((newgN->bn = BN_bin2bn(tmp, len, NULL)))
617 unsigned char tmp[MAX_LEN];
627 if ((len = t_fromb64(tmp, sizeof(tmp), N)) <= 0)
629 N_bn_alloc = BN_bin2bn(tmp, len, NULL);
633 if ((len = t_fromb64(tmp, sizeof(tmp) ,g)) <= 0)
635 g_bn_alloc = BN_bin2bn(tmp, len, NULL);
666 if (BN_bn2bin(v, tmp) < 0)
671 if (!t_tob64(vf, tmp, BN_num_bytes(v)))