This repository has been archived by the owner on Aug 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
bcrypt.php
113 lines (104 loc) · 2.68 KB
/
bcrypt.php
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Funciones para uso de bcrypt.
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @copyright 2014 Dominio público. Sin garantías.
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público. Sin garantías.
* @link http://sivel.sf.net
* Acceso: SÓLO DEFINICIONES
*/
/**
* Genera colchon de datos aleatorios de longitud $lon.
* Como generador de números aleatorios emplea /dev/random
* (que es criptografícamente bueno en OpenBSD >=5.1) o si no está emplea
* la función insegura mt_rand
*
* @param integer $lon Longitud del colchón por generar
*
* @return string Cadena con caracteres aleatorios y longitud $lon
*/
function colchon_aleatorios($lon)
{
$f = null;
if (file_exists("/dev/random")) {
//echo "OJO Si hay /dev/random\n";
$f = fopen("/dev/random", "rb");
$a = fread($f, 1);
if ($a<0 || $a>255) {
trigger_error("No se pudo usar /dev/random");
fclose($f);
$f = null;
}
} else {
trigger_error("No existe /dev/random, se recomienda adJ>=5.4");
}
$col = "";
for ($i = 0 ; $i < $lon; $i++) {
if ($f != null) {
$a = fread($f, 1);
//echo "OJO a= " . ord($a) . "\n";
} else {
$a = chr(mt_rand(1, 255));
}
$col .= $a;
}
if ($f != null) {
fclose($f);
}
return $col;
}
/**
* Codifica sal para bcrypt
* Se basa en función encode_salt de libc de OpenBSD.
*
* @param string $csal Sal en binario
* @param integer $lrondas Cantidad de rondas es 2^$lrondas
*
* @return string Cadena con sal para bcrypt
*/
function codificar_sal($csal, $lrondas)
{
$sal = sprintf("$2a$%2.2u$%s", $lrondas, base64_encode($csal));
return $sal;
}
/**
* Genera sal para bcrypt. Se basa en función bcrypt_gensalt de
* libc de OpenBSD.
*
* @param integer $lrondas Cantidad de rondas es 2^$lrondas
*
* @return string Cadena con sal para bcrypt
*/
function gen_sal_bcrypt($lrondas)
{
$csal = colchon_aleatorios(16);
if ($lrondas < 4) {
$lrondas = 4;
} else if ($lrondas > 31) {
$lrondas = 31;
}
$gsal = codificar_sal($csal, $lrondas);
return $gsal;
}
/**
* Retorna condensado bcrypt de cadena $c
*
* @param string $c Cadena de la cual obtener condensado
*
* @return string Condensado
*/
function condensado_bcrypt($c)
{
do {
$gsal=gen_sal_bcrypt(10);
flush();
$clavebf = crypt($c, $gsal);
} while ($clavebf == '*0');
return $clavebf;
}