Home | History | Annotate | Download | only in openssh

Lines Matching defs:inbuf

77 	u_char *inbuf, *outbuf;
87 inbuf = xmalloc(ilen);
88 BN_bn2bin(in, inbuf);
90 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
98 memset(inbuf, 0, ilen);
100 xfree(inbuf);
106 u_char *inbuf, *outbuf;
113 inbuf = xmalloc(ilen);
114 BN_bn2bin(in, inbuf);
116 if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key,
124 memset(inbuf, 0, ilen);
126 xfree(inbuf);