-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.php
30 lines (25 loc) · 1.36 KB
/
config.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
<?php
/*
Original source from: Shane B. (Xenland)
Modified by: Antoan Stoykov
Date: Sep, 2014
Purpose: To provide a drop-in library for php programmers that are not educated in the art of financial security and programming methods.
Last Updated in Version: 0.0.x
Donation Bitcoin Address (Shane B.): 13ow3MfnbksrSxdcmZZvkhtv4mudsnQeLh
Donation Reddcoin Address (Antoan Stoykov): Ro9D17Q9E3vrSPZxKt5gePSE9dyCeqkkk2
Website: http://alienshaped.com http://bitcoindevkit.com
License (AGPL)
*/
/*
Select the hashing function you would like to use to experience data integrity with your transactions
*/
$settings["hash_type"] = "sha256"; //What should the hash() function use?
$settings["coin_authentication_timeout"] = 1200; //How much time (in seconds) how long a user has to authenticate their identity before a signature is considered expired
//Define some server configuration settings
$server["https"] = "http"; //HTTPS is recommended....
$server["host"] = "127.0.0.1"; //Just the domainname don't put Http:// or https:// that is already taken care of.
$server["user"] = "username";
$server["pass"] = "password";
$server["port"] = "4544";
//Define Integrity checks (checksum details)
$integrity_check = 'random string'; //Generate a random string that is atleast 4096 characters long, Random number here: http://textmechanic.com/Random-String-Generator.html