D | pem.h | 65 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument 66 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument 67 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument 68 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument 69 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument 72 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ 75 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \ 78 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ 81 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \ 84 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ [all …]
|