• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/

Lines Matching refs:asn1

214 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
220 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
223 return (type*)PEM_ASN1_read(CHECKED_D2I_OF(type, d2i_##asn1), \
229 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
232 return PEM_ASN1_write(CHECKED_I2D_OF(type, i2d_##asn1), \
238 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
241 return PEM_ASN1_write(CHECKED_I2D_OF(const type, i2d_##asn1), \
247 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
252 return PEM_ASN1_write(CHECKED_I2D_OF(type, i2d_##asn1), \
258 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
263 return PEM_ASN1_write(CHECKED_I2D_OF(const type, i2d_##asn1), \
271 #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
274 return (type*)PEM_ASN1_read_bio(CHECKED_D2I_OF(type, d2i_##asn1), \
280 #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
283 return PEM_ASN1_write_bio(CHECKED_I2D_OF(type, i2d_##asn1), \
289 #define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
292 return PEM_ASN1_write_bio(CHECKED_I2D_OF(const type, i2d_##asn1), \
298 #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
302 return PEM_ASN1_write_bio(CHECKED_I2D_OF(type, i2d_##asn1), \
308 #define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
312 return PEM_ASN1_write_bio(CHECKED_I2D_OF(const type, i2d_##asn1), \
318 #define IMPLEMENT_PEM_write(name, type, str, asn1) \
319 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
320 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
322 #define IMPLEMENT_PEM_write_const(name, type, str, asn1) \
323 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
324 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
326 #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \
327 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
328 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
330 #define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \
331 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
332 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
334 #define IMPLEMENT_PEM_read(name, type, str, asn1) \
335 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
336 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
338 #define IMPLEMENT_PEM_rw(name, type, str, asn1) \
339 IMPLEMENT_PEM_read(name, type, str, asn1) \
340 IMPLEMENT_PEM_write(name, type, str, asn1)
342 #define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \
343 IMPLEMENT_PEM_read(name, type, str, asn1) \
344 IMPLEMENT_PEM_write_const(name, type, str, asn1)
346 #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \
347 IMPLEMENT_PEM_read(name, type, str, asn1) \
348 IMPLEMENT_PEM_write_cb(name, type, str, asn1)