D | pem.h | 207 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument 208 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument 209 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument 210 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument 211 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument 215 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ argument 218 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \ 221 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ argument 224 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \ 227 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ argument [all …]
|