Home | History | Annotate | Download | only in examples

Lines Matching defs:bio

48   BIO *bio = NULL;
49 BIO *kbio = NULL;
120 /* get a BIO */
121 bio = BIO_new_mem_buf((char *)mypem, -1);
123 if(bio == NULL) {
130 cert = PEM_read_bio_X509(bio, NULL, 0, NULL);
141 /*create a bio for the RSA key*/
147 /*read the key bio into an RSA object*/
150 printf("Failed to create key bio\n");
160 if(bio)
161 BIO_free(bio);