1 .\" $NetBSD: libcrypto.pl,v 1.3 2007/11/27 22:16:03 christos Exp $
3 .\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
6 .\" ========================================================================
7 .de Sh \" Subsection heading
15 .de Sp \" Vertical space (when we can't use .PP)
19 .de Vb \" Begin verbatim text
24 .de Ve \" End verbatim text
28 .\" Set up some character translations and predefined strings. \*(-- will
29 .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
30 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
31 .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
32 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
33 .\" nothing in troff, for use with C<>.
35 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
39 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
40 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
53 .\" Escape single quotes in literal strings from groff's Unicode transform.
57 .\" If the F register is turned on, we'll generate index entries on stderr for
58 .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
59 .\" entries marked with X<> in POD. Of course, you'll have to process the
60 .\" output yourself in some meaningful fashion.
63 . tm Index:\\$1\t\\n%\t"\\$2"
73 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
74 .\" Fear. Run. Save yourself. No user-serviceable parts.
75 . \" fudge factors for nroff and troff
84 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
90 . \" simple accents for nroff and troff
100 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
101 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
102 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
103 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
104 . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
105 . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
107 . \" troff and (daisy-wheel) nroff accents
108 .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
109 .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
110 .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
111 .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
112 .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
113 .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
114 .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
115 .ds ae a\h'-(\w'a'u*4/10)'e
116 .ds Ae A\h'-(\w'A'u*4/10)'E
117 . \" corrections for vroff
118 .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
119 .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
120 . \" for low resolution devices (crt and lpr)
121 .if \n(.H>23 .if \n(.V>19 \
134 .\" ========================================================================
136 .IX Title "BIO_s_file 3"
137 .TH BIO_s_file 3 "2000-09-18" "1.1.0-dev" "OpenSSL"
138 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
139 .\" way too many mistakes in technical documents.
143 BIO_s_file, BIO_new_file, BIO_new_fp, BIO_set_fp, BIO_get_fp,
144 BIO_read_filename, BIO_write_filename, BIO_append_filename,
145 BIO_rw_filename \- FILE bio
149 .IX Header "SYNOPSIS"
151 \& #include <openssl/bio.h>
153 \& BIO_METHOD * BIO_s_file(void);
154 \& BIO *BIO_new_file(const char *filename, const char *mode);
155 \& BIO *BIO_new_fp(FILE *stream, int flags);
157 \& BIO_set_fp(BIO *b,FILE *fp, int flags);
158 \& BIO_get_fp(BIO *b,FILE **fpp);
160 \& int BIO_read_filename(BIO *b, char *name)
161 \& int BIO_write_filename(BIO *b, char *name)
162 \& int BIO_append_filename(BIO *b, char *name)
163 \& int BIO_rw_filename(BIO *b, char *name)
166 .IX Header "DESCRIPTION"
167 \&\fIBIO_s_file()\fR returns the \s-1BIO\s0 file method. As its name implies it
168 is a wrapper round the stdio \s-1FILE\s0 structure and it is a
169 source/sink \s-1BIO\s0.
171 Calls to \fIBIO_read()\fR and \fIBIO_write()\fR read and write data to the
172 underlying stream. \fIBIO_gets()\fR and \fIBIO_puts()\fR are supported on file BIOs.
174 \&\fIBIO_flush()\fR on a file \s-1BIO\s0 calls the \fIfflush()\fR function on the wrapped
177 \&\fIBIO_reset()\fR attempts to change the file pointer to the start of file
178 using fseek(stream, 0, 0).
180 \&\fIBIO_seek()\fR sets the file pointer to position \fBofs\fR from start of file
181 using fseek(stream, ofs, 0).
183 \&\fIBIO_eof()\fR calls \fIfeof()\fR.
185 Setting the \s-1BIO_CLOSE\s0 flag calls \fIfclose()\fR on the stream when the \s-1BIO\s0
188 \&\fIBIO_new_file()\fR creates a new file \s-1BIO\s0 with mode \fBmode\fR the meaning
189 of \fBmode\fR is the same as the stdio function \fIfopen()\fR. The \s-1BIO_CLOSE\s0
190 flag is set on the returned \s-1BIO\s0.
192 \&\fIBIO_new_fp()\fR creates a file \s-1BIO\s0 wrapping \fBstream\fR. Flags can be:
193 \&\s-1BIO_CLOSE\s0, \s-1BIO_NOCLOSE\s0 (the close flag) \s-1BIO_FP_TEXT\s0 (sets the underlying
194 stream to text mode, default is binary: this only has any effect under
197 \&\fIBIO_set_fp()\fR set the fp of a file \s-1BIO\s0 to \fBfp\fR. \fBflags\fR has the same
198 meaning as in \fIBIO_new_fp()\fR, it is a macro.
200 \&\fIBIO_get_fp()\fR retrieves the fp of a file \s-1BIO\s0, it is a macro.
202 \&\fIBIO_seek()\fR is a macro that sets the position pointer to \fBoffset\fR bytes
203 from the start of file.
205 \&\fIBIO_tell()\fR returns the value of the position pointer.
207 \&\fIBIO_read_filename()\fR, \fIBIO_write_filename()\fR, \fIBIO_append_filename()\fR and
208 \&\fIBIO_rw_filename()\fR set the file \s-1BIO\s0 \fBb\fR to use file \fBname\fR for
209 reading, writing, append or read write respectively.
212 When wrapping stdout, stdin or stderr the underlying stream should not
213 normally be closed so the \s-1BIO_NOCLOSE\s0 flag should be set.
215 Because the file \s-1BIO\s0 calls the underlying stdio functions any quirks
216 in stdio behaviour will be mirrored by the corresponding \s-1BIO\s0.
218 .IX Header "EXAMPLES"
219 File \s-1BIO\s0 \*(L"hello world\*(R":
223 \& bio_out = BIO_new_fp(stdout, BIO_NOCLOSE);
224 \& BIO_printf(bio_out, "Hello World\en");
227 Alternative technique:
231 \& bio_out = BIO_new(BIO_s_file());
232 \& if(bio_out == NULL) /* Error ... */
233 \& if(!BIO_set_fp(bio_out, stdout, BIO_NOCLOSE)) /* Error ... */
234 \& BIO_printf(bio_out, "Hello World\en");
241 \& out = BIO_new_file("filename.txt", "w");
242 \& if(!out) /* Error occurred */
243 \& BIO_printf(out, "Hello World\en");
247 Alternative technique:
251 \& out = BIO_new(BIO_s_file());
252 \& if(out == NULL) /* Error ... */
253 \& if(!BIO_write_filename(out, "filename.txt")) /* Error ... */
254 \& BIO_printf(out, "Hello World\en");
258 .IX Header "RETURN VALUES"
259 \&\fIBIO_s_file()\fR returns the file \s-1BIO\s0 method.
261 \&\fIBIO_new_file()\fR and \fIBIO_new_fp()\fR return a file \s-1BIO\s0 or \s-1NULL\s0 if an error
264 \&\fIBIO_set_fp()\fR and \fIBIO_get_fp()\fR return 1 for success or 0 for failure
265 (although the current implementation never return 0).
267 \&\fIBIO_seek()\fR returns the same value as the underlying \fIfseek()\fR function:
268 0 for success or \-1 for failure.
270 \&\fIBIO_tell()\fR returns the current file position.
272 \&\fIBIO_read_filename()\fR, \fIBIO_write_filename()\fR, \fIBIO_append_filename()\fR and
273 \&\fIBIO_rw_filename()\fR return 1 for success or 0 for failure.
276 \&\fIBIO_reset()\fR and \fIBIO_seek()\fR are implemented using \fIfseek()\fR on the underlying
277 stream. The return value for \fIfseek()\fR is 0 for success or \-1 if an error
278 occurred this differs from other types of \s-1BIO\s0 which will typically return
279 1 for success and a non positive value if an error occurred.
281 .IX Header "SEE ALSO"
282 \&\fIBIO_seek\fR\|(3), \fIBIO_tell\fR\|(3),
283 \&\fIBIO_reset\fR\|(3), \fIBIO_flush\fR\|(3),
284 \&\fIBIO_read\fR\|(3),
285 \&\fIBIO_write\fR\|(3), \fIBIO_puts\fR\|(3),
286 \&\fIBIO_gets\fR\|(3), \fIBIO_printf\fR\|(3),
287 \&\fIBIO_set_close\fR\|(3), \fIBIO_get_close\fR\|(3)