• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/

Lines Matching refs:str

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 *(*)(D2I_OF(type),char *,FILE *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read))(d2i_##asn1, str,fp,x,cb,u)); \
226 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
229 return(((int (*)(I2D_OF(type),const char *,FILE *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL)); \
232 #define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
235 return(((int (*)(I2D_OF_const(type),const char *,FILE *, const type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL)); \
238 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
243 return(((int (*)(I2D_OF(type),const char *,FILE *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u)); \
246 #define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
251 return(((int (*)(I2D_OF_const(type),const char *,FILE *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write))(i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u)); \
256 #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
259 return(((type *(*)(D2I_OF(type),const char *,BIO *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read_bio))(d2i_##asn1, str,bp,x,cb,u)); \
262 #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
265 return(((int (*)(I2D_OF(type),const char *,BIO *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL)); \
268 #define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
271 return(((int (*)(I2D_OF_const(type),const char *,BIO *,const type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL)); \
274 #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
278 return(((int (*)(I2D_OF(type),const char *,BIO *,type *,const EVP_CIPHER *,unsigned char *,int,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u)); \
281 #define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
285 return(((int (*)(I2D_OF_const(type),const char *,BIO *,type *,const EVP_CIPHER *,unsigned char *,int,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u)); \
288 #define IMPLEMENT_PEM_write(name, type, str, asn1) \
289 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
290 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
292 #define IMPLEMENT_PEM_write_const(name, type, str, asn1) \
293 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
294 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
296 #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \
297 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
298 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
300 #define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \
301 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
302 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
304 #define IMPLEMENT_PEM_read(name, type, str, asn1) \
305 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
306 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
308 #define IMPLEMENT_PEM_rw(name, type, str, asn1) \
309 IMPLEMENT_PEM_read(name, type, str, asn1) \
310 IMPLEMENT_PEM_write(name, type, str, asn1)
312 #define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \
313 IMPLEMENT_PEM_read(name, type, str, asn1) \
314 IMPLEMENT_PEM_write_const(name, type, str, asn1)
316 #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \
317 IMPLEMENT_PEM_read(name, type, str, asn1) \
318 IMPLEMENT_PEM_write_cb(name, type, str, asn1)
584 void PEM_dek_info(char *buf, const char *type, int len, char *str);