Lines Matching refs:str
99 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument
100 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument
102 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument
104 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument
106 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument
110 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
113 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str, fp, \
117 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
120 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
125 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
126 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
129 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
132 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
137 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
138 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
142 # define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ argument
146 return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str, bp, \
150 # define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ argument
153 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1, str, out, \
158 # define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ argument
159 IMPLEMENT_PEM_write_bio(name, type, str, asn1)
162 # define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ argument
165 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1, str, out, \
170 # define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ argument
171 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1)
174 # define IMPLEMENT_PEM_write(name, type, str, asn1) \ argument
175 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
176 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
179 # define IMPLEMENT_PEM_write_const(name, type, str, asn1) \ argument
180 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
181 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
184 # define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \ argument
185 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
186 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
189 # define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \ argument
190 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
191 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
194 # define IMPLEMENT_PEM_read(name, type, str, asn1) \ argument
195 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
196 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
198 # define IMPLEMENT_PEM_rw(name, type, str, asn1) \ argument
199 IMPLEMENT_PEM_read(name, type, str, asn1) \
200 IMPLEMENT_PEM_write(name, type, str, asn1)
203 # define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \ argument
204 IMPLEMENT_PEM_read(name, type, str, asn1) \
205 IMPLEMENT_PEM_write_const(name, type, str, asn1)
208 # define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \ argument
209 IMPLEMENT_PEM_read(name, type, str, asn1) \
210 IMPLEMENT_PEM_write_cb(name, type, str, asn1)
432 void PEM_dek_info(char *buf, const char *type, int len, const char *str);