Lines Matching refs:asn1
207 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument
208 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument
209 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument
210 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument
211 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument
215 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \ argument
218 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
221 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \ argument
224 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \
227 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \ argument
230 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,(void *)x,NULL,NULL,0,NULL,NULL); \
233 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \ argument
238 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
241 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \ argument
246 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
251 #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ argument
254 return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \
257 #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ argument
260 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL); \
263 #define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ argument
266 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,NULL,NULL,0,NULL,NULL); \
269 #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ argument
273 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u); \
276 #define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ argument
280 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,enc,kstr,klen,cb,u); \
283 #define IMPLEMENT_PEM_write(name, type, str, asn1) \ argument
284 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
285 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
287 #define IMPLEMENT_PEM_write_const(name, type, str, asn1) \ argument
288 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
289 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
291 #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \ argument
292 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
293 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
295 #define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \ argument
296 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
297 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
299 #define IMPLEMENT_PEM_read(name, type, str, asn1) \ argument
300 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
301 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
303 #define IMPLEMENT_PEM_rw(name, type, str, asn1) \ argument
304 IMPLEMENT_PEM_read(name, type, str, asn1) \
305 IMPLEMENT_PEM_write(name, type, str, asn1)
307 #define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \ argument
308 IMPLEMENT_PEM_read(name, type, str, asn1) \
309 IMPLEMENT_PEM_write_const(name, type, str, asn1)
311 #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \ argument
312 IMPLEMENT_PEM_read(name, type, str, asn1) \
313 IMPLEMENT_PEM_write_cb(name, type, str, asn1)