summaryrefslogtreecommitdiff
path: root/vendor/adodb/adodb-php/session/crypt.inc.php
blob: 1468cb1ae1c659b8d8698d8588f0192427be7245 (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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
//	 Session Encryption by Ari Kuorikoski <ari.kuorikoski@finebyte.com>
class MD5Crypt{
		function keyED($txt,$encrypt_key)
		{
				$encrypt_key = md5($encrypt_key);
				$ctr=0;
				$tmp = "";
				for ($i=0;$i<strlen($txt);$i++){
						if ($ctr==strlen($encrypt_key)) $ctr=0;
						$tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1);
						$ctr++;
				}
				return $tmp;
		}

		function Encrypt($txt,$key)
		{
				srand((double)microtime()*1000000);
				$encrypt_key = md5(rand(0,32000));
				$ctr=0;
				$tmp = "";
				for ($i=0;$i<strlen($txt);$i++)
				{
				if ($ctr==strlen($encrypt_key)) $ctr=0;
				$tmp.= substr($encrypt_key,$ctr,1) .
				(substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1));
				$ctr++;
				}
				return base64_encode($this->keyED($tmp,$key));
		}

		function Decrypt($txt,$key)
		{
				$txt = $this->keyED(base64_decode($txt),$key);
				$tmp = "";
				for ($i=0;$i<strlen($txt);$i++){
						$md5 = substr($txt,$i,1);
						$i++;
						$tmp.= (substr($txt,$i,1) ^ $md5);
				}
				return $tmp;
		}

		function RandPass()
		{
				$randomPassword = "";
				srand((double)microtime()*1000000);
				for($i=0;$i<8;$i++)
				{
						$randnumber = rand(48,120);

						while (($randnumber >= 58 && $randnumber <= 64) || ($randnumber >= 91 && $randnumber <= 96))
						{
								$randnumber = rand(48,120);
						}

						$randomPassword .= chr($randnumber);
				}
				return $randomPassword;
		}

}


class SHA1Crypt{
		function keyED($txt,$encrypt_key)
		{

				$encrypt_key = sha1($encrypt_key);
				$ctr=0;
				$tmp = "";

				for ($i=0;$i<strlen($txt);$i++){
						if ($ctr==strlen($encrypt_key)) $ctr=0;
						$tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1);
						$ctr++;
				}
				return $tmp;

		}

		function Encrypt($txt,$key)
		{

				srand((double)microtime()*1000000);
				$encrypt_key = sha1(rand(0,32000));
				$ctr=0;
				$tmp = "";

				for ($i=0;$i<strlen($txt);$i++)

				{

				if ($ctr==strlen($encrypt_key)) $ctr=0;

				$tmp.= substr($encrypt_key,$ctr,1) .

				(substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1));

				$ctr++;

				}

				return base64_encode($this->keyED($tmp,$key));

		}



		function Decrypt($txt,$key)
		{

				$txt = $this->keyED(base64_decode($txt),$key);

				$tmp = "";

				for ($i=0;$i<strlen($txt);$i++){

						$sha1 = substr($txt,$i,1);

						$i++;

						$tmp.= (substr($txt,$i,1) ^ $sha1);

				}

				return $tmp;
		}



		function RandPass()
		{
				$randomPassword = "";
				srand((double)microtime()*1000000);

				for($i=0;$i<8;$i++)
				{

						$randnumber = rand(48,120);

						while (($randnumber >= 58 && $randnumber <= 64) || ($randnumber >= 91 && $randnumber <= 96))
						{
								$randnumber = rand(48,120);
						}

						$randomPassword .= chr($randnumber);
				}

				return $randomPassword;

		}



}