Lines Matching refs:asn1
104 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/ argument
105 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/ argument
107 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/ argument
109 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/ argument
111 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/ argument
115 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
118 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str, fp, \
122 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
125 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
130 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
131 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
134 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
137 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1, str, out, \
142 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
143 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
147 # define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \ argument
151 return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str, bp, \
155 # define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \ argument
158 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1, str, out, \
163 # define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \ argument
164 IMPLEMENT_PEM_write_bio(name, type, str, asn1)
167 # define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \ argument
170 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1, str, out, \
175 # define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \ argument
176 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1)
179 # define IMPLEMENT_PEM_write(name, type, str, asn1) \ argument
180 IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
181 IMPLEMENT_PEM_write_fp(name, type, str, asn1)
184 # define IMPLEMENT_PEM_write_const(name, type, str, asn1) \ argument
185 IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
186 IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
189 # define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \ argument
190 IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
191 IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
194 # define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \ argument
195 IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
196 IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
199 # define IMPLEMENT_PEM_read(name, type, str, asn1) \ argument
200 IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
201 IMPLEMENT_PEM_read_fp(name, type, str, asn1)
203 # define IMPLEMENT_PEM_rw(name, type, str, asn1) \ argument
204 IMPLEMENT_PEM_read(name, type, str, asn1) \
205 IMPLEMENT_PEM_write(name, type, str, asn1)
208 # define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \ argument
209 IMPLEMENT_PEM_read(name, type, str, asn1) \
210 IMPLEMENT_PEM_write_const(name, type, str, asn1)
213 # define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \ argument
214 IMPLEMENT_PEM_read(name, type, str, asn1) \
215 IMPLEMENT_PEM_write_cb(name, type, str, asn1)