Lines Matching refs:BIO
64 I wrote function which took BIO* as argument, read data from it
66 encrypted form. OK I pushed BIO_f_cipher to the BIO stack
73 So I wanted another BIO which would catch the incorrect passwords and
125 #include <openssl/bio.h>
129 static int ok_write(BIO *h, const char *buf, int num);
130 static int ok_read(BIO *h, char *buf, int size);
131 static long ok_ctrl(BIO *h, int cmd, long arg1, void *arg2);
132 static int ok_new(BIO *h);
133 static int ok_free(BIO *data);
134 static long ok_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
136 static void sig_out(BIO* b);
137 static void sig_in(BIO* b);
138 static void block_out(BIO* b);
139 static void block_in(BIO* b);
177 static int ok_new(BIO *bi)
201 static int ok_free(BIO *a)
213 static int ok_read(BIO *b, char *out, int outl)
284 static int ok_write(BIO *b, const char *in, int inl)
344 static long ok_ctrl(BIO *b, int cmd, long num, void *ptr)
398 /* Finally flush the underlying BIO */
430 static long ok_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
458 static void sig_out(BIO* b)
484 static void sig_in(BIO* b)
521 static void block_out(BIO* b)
541 static void block_in(BIO* b)