• Home
  • Raw
  • Download

Lines Matching refs:asn1

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) \
148 return i2d_##asn1((const type *)x, outp); \
155 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
157 return i2d_##asn1((type *)x, outp); \
166 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
168 return i2d_##asn1((const type *)x, outp); \
179 #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ argument
182 return d2i_##asn1((type **)x, inp, len); \
190 #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ argument
192 return i2d_##asn1((type *)x, outp); \
199 #define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ argument
201 return i2d_##asn1((const type *)x, outp); \
208 #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ argument
210 return i2d_##asn1((type *)x, outp); \
219 #define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ argument
221 return i2d_##asn1((const type *)x, outp); \
230 #define IMPLEMENT_PEM_write(name, type, str, asn1) \ argument
231 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
232 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
234 #define IMPLEMENT_PEM_write_const(name, type, str, asn1) \ argument
235 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
236 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
238 #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \ argument
239 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
240 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
242 #define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \ argument
243 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
244 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
246 #define IMPLEMENT_PEM_read(name, type, str, asn1) \ argument
247 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
248 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
250 #define IMPLEMENT_PEM_rw(name, type, str, asn1) \ argument
251 IMPLEMENT_PEM_read(name, type, str, asn1) \
252 IMPLEMENT_PEM_write(name, type, str, asn1)
254 #define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \ argument
255 IMPLEMENT_PEM_read(name, type, str, asn1) \
256 IMPLEMENT_PEM_write_const(name, type, str, asn1)
258 #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \ argument
259 IMPLEMENT_PEM_read(name, type, str, asn1) \
260 IMPLEMENT_PEM_write_cb(name, type, str, asn1)