2009-04-27 17:57:24 +00:00
|
|
|
<?php # -*- php -*-
|
2009-03-10 22:50:35 +00:00
|
|
|
|
2009-08-28 10:55:56 +00:00
|
|
|
# For the validation interface.
|
2009-03-10 22:50:35 +00:00
|
|
|
$baseParams = array ();
|
2009-08-28 10:55:56 +00:00
|
|
|
$baseParams['__YKVAL_DB_HOST__'] = 'localhost';
|
|
|
|
$baseParams['__YKVAL_DB_NAME__'] = 'ykval';
|
|
|
|
$baseParams['__YKVAL_DB_USER__'] = 'ykval_verifier';
|
|
|
|
$baseParams['__YKVAL_DB_PW__'] = 'password';
|
|
|
|
|
|
|
|
# For the get-api-key service.
|
|
|
|
$baseParams['__YKGAK_DB_HOST__'] = $baseParams['__YKVAL_DB_HOST__'];
|
|
|
|
$baseParams['__YKGAK_DB_NAME__'] = $baseParams['__YKVAL_DB_NAME__'];
|
|
|
|
$baseParams['__YKGAK_DB_USER__'] = 'ykval_getapikey';
|
2009-08-31 08:25:01 +00:00
|
|
|
$baseParams['__YKGAK_DB_PW__'] = 'secondpassword';
|
2009-08-28 10:55:56 +00:00
|
|
|
$baseParams['__YKGAK_ID__'] = '';
|
|
|
|
$baseParams['__YKGAK_KEY__'] = '';
|
2009-04-27 17:57:24 +00:00
|
|
|
|
2009-08-31 08:25:01 +00:00
|
|
|
# For the revoke service.
|
|
|
|
$baseParams['__YKR_DB_HOST__'] = $baseParams['__YKVAL_DB_HOST__'];
|
|
|
|
$baseParams['__YKR_DB_NAME__'] = $baseParams['__YKVAL_DB_NAME__'];
|
|
|
|
$baseParams['__YKR_DB_USER__'] = 'ykval_revoke';
|
|
|
|
$baseParams['__YKR_DB_PW__'] = 'thirdpassword';
|
|
|
|
$baseParams['__YKR_IP__'] = '1.2.3.4';
|
|
|
|
|
2009-04-27 17:57:24 +00:00
|
|
|
// otp2ksmurls: Return array of YK-KSM URLs for decrypting OTP for
|
|
|
|
// CLIENT. The URLs must be fully qualified, i.e., contain the OTP
|
|
|
|
// itself.
|
|
|
|
function otp2ksmurls ($otp, $client) {
|
|
|
|
if ($client == 42) {
|
2009-05-05 10:47:22 +00:00
|
|
|
return array("http://another-ykkms.example.com/wsapi/decrypt?otp=$otp");
|
2009-04-27 17:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match ("/^dteffujehknh/", $otp)) {
|
2009-05-05 10:47:22 +00:00
|
|
|
return array("http://different-ykkms.example.com/wsapi/decrypt?otp=$otp");
|
2009-04-27 17:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return array(
|
2009-05-05 10:47:22 +00:00
|
|
|
"http://ykkms1.example.com/wsapi/decrypt?otp=$otp",
|
|
|
|
"http://ykkms2.example.com/wsapi/decrypt?otp=$otp",
|
2009-04-27 17:57:24 +00:00
|
|
|
);
|
|
|
|
}
|
2009-03-10 22:50:35 +00:00
|
|
|
|
|
|
|
?>
|