1 |
dashley |
35 |
<?php
|
2 |
|
|
//------------------------------------------------------------------------
|
3 |
|
|
//Marshall Aviation Center FBO Management Software
|
4 |
|
|
//Copyright (C)2005 David T. Ashley
|
5 |
|
|
//
|
6 |
|
|
//This program is free software; you can redistribute it and/or
|
7 |
|
|
//modify it under the terms of the GNU General Public License
|
8 |
|
|
//as published by the Free Software Foundation; either version 2
|
9 |
|
|
//of the License, or (at your option) any later version.
|
10 |
|
|
//
|
11 |
|
|
//This program is distributed in the hope that it will be useful,
|
12 |
|
|
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
|
|
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14 |
|
|
//GNU General Public License for more details.
|
15 |
|
|
//
|
16 |
|
|
//You should have received a copy of the GNU General Public License
|
17 |
|
|
//along with this program; if not, write to the Free Software
|
18 |
|
|
//Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
19 |
|
|
//
|
20 |
|
|
//The author (David T. Ashley) may be contacted by e-mail at dta@e3ft.com
|
21 |
|
|
//and by postal mail at P.O. Box 918, Marshall MI 49068.
|
22 |
|
|
//------------------------------------------------------------------------
|
23 |
|
|
//This file contains the hash key. The hash key is dozens to hundreds
|
24 |
|
|
//of characters of semi-randomness to use in forming MD5 hashes and other
|
25 |
|
|
//digests.
|
26 |
|
|
//
|
27 |
|
|
//Generally speaking, the hash key can't be changed once a site is in
|
28 |
|
|
//operation; as this would invalidate all stored hashes (such as
|
29 |
|
|
//hashes used for passwords).
|
30 |
|
|
//
|
31 |
|
|
//------------------------------------------------------------------------
|
32 |
|
|
//Returns the hash key.
|
33 |
|
|
//
|
34 |
|
|
function hkey_hkey()
|
35 |
|
|
{
|
36 |
|
|
return(
|
37 |
|
|
"hdfnviadf 1243751478176ldsflkbvkls lskdhfthequickbrownfoxjumpedoverthe" .
|
38 |
|
|
"NaseEieeFuesseAugenOhrenFingerHaende3141519336743132695709719burpbelchi" .
|
39 |
|
|
"practicalhand-to-handcombatforthepoliceofficerwithC.J.CaracciAcopwillpu" .
|
40 |
|
|
"thishandsoncriminalsfarmoreoftenthanhe'lldrawhisweapon,sohemustknowthep" .
|
41 |
|
|
"ractical, straightforward grappling, overpowering, and arresing techniq" .
|
42 |
|
|
"ues in the film to get the job done safely and effectively.772134961234"
|
43 |
|
|
);
|
44 |
|
|
}
|
45 |
|
|
|
46 |
|
|
//------------------------------------------------------------------------
|
47 |
|
|
?>
|