summaryrefslogtreecommitdiff
path: root/src/interface/bcrypt.urs
blob: a474ef02c63ff45b8c69a4f35817ef6eeaf3f889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(* bcrypt.urs -- high-level FFI to the bcrypt library
Copyright (C) 2013  Benjamin Barenblat <benjamin@barenblat.name>

This library is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License along
with this library.  If not, see <http://www.gnu.org/licenses/>. *)

(* In contrast to the 'BcryptFfi' module, 'Bcrypt' is a high-level, typesafe
interface to bcrypt.  You should use 'Bcrypt' instead of 'BcryptFfi' whenever
possible; the former is implemented on top of the latter.

The bcrypt algorithm takes as input a "setting" and a password and produces a
hash.  The "setting" is a data structure describing the version of bcrypt in
use, a tunable parameter defining how slow you would like the hash to be, and
the salt for the hash. *)


(******************************** The setting ********************************)

structure Setting : sig
    type t
    val eq_t : eq t
    val show_t : show t
    val read_t : read t
    val sql_t : sql_injectable t

    (* Creates a setting with a pseudorandom salt and the default number of
    rounds.  The salt comes from /dev/urandom, which is not a cryptographically
    secure source, but it should be good enough. *)
    val random : transaction t

    (* TODO: Write a function to create a setting with pseudorandom salt and a
    specified number of rounds. *)
end


(******************************* The algorithm *******************************)

type hashedString
val eq_hashedString : eq hashedString
val show_hashedString : show hashedString
val read_hashedString : read hashedString
val sql_hashedString : sql_injectable hashedString

(* Extracts the setting from a hashed password. *)
val setting : hashedString -> Setting.t

(* Performs a bcrypt operation. *)
val crypt : Setting.t -> string -> hashedString