Home | History | Annotate | Download | only in openssh

Lines Matching refs:ilen

78 	int len, ilen, olen;
86 ilen = BN_num_bytes(in);
87 inbuf = xmalloc(ilen);
90 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
98 memset(inbuf, 0, ilen);
107 int len, ilen, olen;
112 ilen = BN_num_bytes(in);
113 inbuf = xmalloc(ilen);
116 if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key,
124 memset(inbuf, 0, ilen);