Lines Matching refs:asn1
214 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument
215 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument
216 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument
217 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument
218 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument
222 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ argument
225 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
228 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ argument
231 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \
234 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ argument
237 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,(void *)x,NULL,NULL,0,NULL,NULL); \
240 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \ argument
245 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
248 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \ argument
253 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
258 #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ argument
261 return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \
264 #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ argument
267 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL); \
270 #define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ argument
273 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,NULL,NULL,0,NULL,NULL); \
276 #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ argument
280 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u); \
283 #define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ argument
287 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,enc,kstr,klen,cb,u); \
290 #define IMPLEMENT_PEM_write(name, type, str, asn1) \ argument
291 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
292 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
294 #define IMPLEMENT_PEM_write_const(name, type, str, asn1) \ argument
295 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
296 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
298 #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \ argument
299 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
300 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
302 #define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \ argument
303 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
304 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
306 #define IMPLEMENT_PEM_read(name, type, str, asn1) \ argument
307 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
308 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
310 #define IMPLEMENT_PEM_rw(name, type, str, asn1) \ argument
311 IMPLEMENT_PEM_read(name, type, str, asn1) \
312 IMPLEMENT_PEM_write(name, type, str, asn1)
314 #define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \ argument
315 IMPLEMENT_PEM_read(name, type, str, asn1) \
316 IMPLEMENT_PEM_write_const(name, type, str, asn1)
318 #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \ argument
319 IMPLEMENT_PEM_read(name, type, str, asn1) \
320 IMPLEMENT_PEM_write_cb(name, type, str, asn1)