| H A D | pem.h | 105 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument 106 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument 108 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument 110 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument 112 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument 116 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ 119 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str, fp, \ 123 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ 126 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \ 131 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ [all …]
|