Lines Matching refs:buf
111 char *buf; local
116 buf = malloc ((unsigned) len);
117 hex2bin (len, secret, buf);
121 err = cbc_crypt (key, buf, len, DES_ENCRYPT | DES_HW, ivec);
124 free (buf);
127 bin2hex (len, (unsigned char *) buf, secret);
128 free (buf);
143 char *buf; in libc_hidden_nolink_sunrpc() local
148 buf = malloc ((unsigned) len); in libc_hidden_nolink_sunrpc()
150 hex2bin (len, secret, buf); in libc_hidden_nolink_sunrpc()
154 err = cbc_crypt (key, buf, len, DES_DECRYPT | DES_HW, ivec); in libc_hidden_nolink_sunrpc()
157 free (buf); in libc_hidden_nolink_sunrpc()
160 bin2hex (len, (unsigned char *) buf, secret); in libc_hidden_nolink_sunrpc()
161 free (buf); in libc_hidden_nolink_sunrpc()