D | pem.h | 118 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument 119 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument 120 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument 121 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument 122 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument 126 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ 129 return d2i_##asn1((type **)x, inp, len); \ 137 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ 139 return i2d_##asn1((type *)x, outp); \ 146 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ [all …]
|