• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/pem/

Lines Matching refs:asn1

207 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
208 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
209 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
213 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
216 return((type *)PEM_ASN1_read((char *(*)())d2i_##asn1, str,fp,(char **)x,\
220 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
223 return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, (char *)x, \
227 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
232 return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, \
238 #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
241 return((type *)PEM_ASN1_read_bio((char *(*)())d2i_##asn1, str,bp,\
245 #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
248 return(PEM_ASN1_write_bio((int (*)())i2d_##asn1,str,bp, (char *)x, \
252 #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
256 return(PEM_ASN1_write_bio((int (*)())i2d_##asn1,str,bp, \
260 #define IMPLEMENT_PEM_write(name, type, str, asn1) \
261 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
262 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
264 #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \
265 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
266 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
268 #define IMPLEMENT_PEM_read(name, type, str, asn1) \
269 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
270 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
272 #define IMPLEMENT_PEM_rw(name, type, str, asn1) \
273 IMPLEMENT_PEM_read(name, type, str, asn1) \
274 IMPLEMENT_PEM_write(name, type, str, asn1)
276 #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \
277 IMPLEMENT_PEM_read(name, type, str, asn1) \
278 IMPLEMENT_PEM_write_cb(name, type, str, asn1)