Home | History | Annotate | Download | only in rsa

Lines Matching defs:tmpbuf

31    unsigned char *tmpbuf;
47 tmpbuf = XCALLOC(1, MAX_RSA_SIZE*8);
48 if (tmpbuf == NULL) {
61 LTC_SET_ASN1(ssl_pubkey, 1, LTC_ASN1_BIT_STRING, tmpbuf, MAX_RSA_SIZE*8);
68 y = (y << 1) | tmpbuf[x];
70 tmpbuf[t++] = (unsigned char)y;
77 if ((err = der_decode_sequence_multi(tmpbuf, t,
81 XFREE(tmpbuf);
84 XFREE(tmpbuf);
88 XFREE(tmpbuf);