Lines Matching defs:buf
89 char buf[120];
97 ERR_error_string(e, buf);
98 fprintf(stderr, "- SSL %s: %s:%d\n", buf, file, line);
123 static int pem_pw_cb(char *buf, int len, int w, void *v)
134 strcpy(buf, key_pass);
179 unsigned char buf[2];
188 n = BIO_read(b, buf, 2);
203 if (buf[0] == 0x30 && buf[1] >= 0x81 && buf[1] <= 0x84)
225 unsigned char buf[4096];
367 while ((n = BIO_read(bm, buf, sizeof(buf))),
369 ERR(BIO_write(bd, buf, n) < 0, "%s", dest_name);
389 while ((n = BIO_read(b, buf, sizeof(buf))), n > 0)
390 ERR(BIO_write(bd, buf, n) < 0, "%s", dest_name);