Lines Matching refs:BIO
65 static int enc_write(BIO *h, const char *buf, int num);
66 static int enc_read(BIO *h, char *buf, int size);
67 /*static int enc_puts(BIO *h, const char *str); */
68 /*static int enc_gets(BIO *h, char *str, int size); */
69 static long enc_ctrl(BIO *h, int cmd, long arg1, void *arg2);
70 static int enc_new(BIO *h);
71 static int enc_free(BIO *data);
72 static long enc_callback_ctrl(BIO *h, int cmd, bio_info_cb *fps);
108 static int enc_new(BIO *bi)
128 static int enc_free(BIO *a)
143 static int enc_read(BIO *b, char *out, int outl)
231 static int enc_write(BIO *b, const char *in, int inl)
286 static long enc_ctrl(BIO *b, int cmd, long num, void *ptr)
288 BIO *dbio;
345 /* Finally flush the underlying BIO */
362 dbio=(BIO *)ptr;
374 static long enc_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
390 BIO *b;
408 void BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k,