D | pem.h | 209 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument 210 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument 211 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument 212 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument 213 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument 217 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ argument 220 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \ 223 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ argument 226 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \ 229 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ argument [all …]
|