patch #8106
[mldonkey.git] / src / networks / donkey / donkeySui2.ml
blob6550c3d8789254fcef99ce3dc1eb31737eeaab5b
1 (* Copyright 2006 *)
2 (*
3 This file is part of mldonkey.
5 mldonkey is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 mldonkey is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with mldonkey; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 module type SUI = sig
21 val create_key : unit -> string
22 val load_key : string -> string
23 val create_signature : string -> int -> int64 -> int -> int64 -> string
24 val verify_signature : string -> int -> string -> int -> int64 -> int -> int64 -> bool
25 end
27 module SUI : SUI = struct
28 let create_key () = ""
29 let load_key _ = ""
30 let create_signature _ _ _ _ _ = ""
31 let verify_signature _ _ _ _ _ _ _ = false
32 end