Client.getPass: catch syserror inval when detecting non-tty use
[hcoop/domtool2.git] / src / openssl.sig
1 (* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 *)
18
19 (* OpenSSL *)
20
21 signature OPENSSL = sig
22
23 exception OpenSSL of string
24
25 val ssl_err : string -> unit
26
27 type context
28 type bio
29 type listener
30
31 val readChar : bio -> char option
32 val readInt : bio -> int option
33 val readLen : bio * int -> string option
34 val readChunk : bio -> string option
35 val readString : bio -> string option
36
37 val writeChar : bio * char -> unit
38 val writeInt : bio * int -> unit
39 val writeString' : bio * string -> unit
40 val writeString : bio * string -> unit
41
42 val context : bool -> string * string * string -> context
43
44 val connect : bool -> context * string -> bio
45 val close : bio -> unit
46
47 val listen : context * int -> listener
48 val shutdown : listener -> unit
49
50 val accept : listener -> bio option
51
52 val peerCN : bio -> string
53
54 end