D | pem.h | 117 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument 118 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument 119 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument 120 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument 121 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument 125 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ 128 return (type *)PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \ 131 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ 134 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \ 137 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ [all …]
|