<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="https://forum.yubico.com/feed.php?f=5&amp;t=212" />

<title>Yubico Forum</title>
<subtitle>...visit our web-store at</subtitle>
<link href="https://forum.yubico.com/index.php" />
<updated>2008-12-29T16:19:56+01:00</updated>

<author><name><![CDATA[Yubico Forum]]></name></author>
<id>https://forum.yubico.com/feed.php?f=5&amp;t=212</id>
<entry>
<author><name><![CDATA[network-marvels]]></name></author>
<updated>2008-12-29T16:19:56+01:00</updated>
<published>2008-12-29T16:19:56+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=835#p835</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=835#p835"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=835#p835"><![CDATA[
In order to successfully decrypt the OTP, AES key provided in the &quot;config.php&quot; file must be the one with which we have reprogrammed the YubiKey.<br /><br /><div class="quotetitle">dion.rowney wrote:</div><div class="quotecontent"><br />// This is the AES secret inside your key<br />// Eg. $aesParams['__ADM_KEY_SECRET__'] = '7Bs1Rl4Itr2+ZmbyO/KCWQ==';<br />$aesParams['__ADM_KEY_SECRET__'] = 'eXViaWNvdmFsaWRhdGlvbnNlcnZlcg==';<br /></div><br /><br />Please replace &quot;$aesParams['__ADM_KEY_SECRET__'] = 'eXViaWNvdmFsaWRhdGlvbnNlcnZlcg==';&quot; with $aesParams['__ADM_KEY_SECRET__'] = 'tMwIhota8tSdUNgISOoudQ==';<br /><br />This should solve the issue and Yubico Validation server should verify your OTP correctly. <br />We have successfully tested it in our test environment.<br /><br />Please let us know if your are facing any further configuration problems.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=280">network-marvels</a> — Mon Dec 29, 2008 4:19 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[network-marvels]]></name></author>
<updated>2008-12-24T06:57:32+01:00</updated>
<published>2008-12-24T06:57:32+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=832#p832</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=832#p832"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=832#p832"><![CDATA[
Thanks for providing this valuable information. We are looking into this and will update you asap.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=280">network-marvels</a> — Wed Dec 24, 2008 6:57 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[dion.rowney]]></name></author>
<updated>2008-12-23T14:56:52+01:00</updated>
<published>2008-12-23T14:56:52+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=831#p831</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=831#p831"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=831#p831"><![CDATA[
<div class="codetitle"><b>Code:</b></div><div class="codecontent">//// AES secrets<br />//<br />$aesParams = array ();<br /><br />/******* Erase this section after installation *******/<br /><br /><br />// OTP from your admin key you are to use to log in to KMS<br />// Eg. $otp = 'gklhtdkvrbfnbuicngergckgdfvfrbfjfhgiffghcithv';<br />$otp = 'hbhdheebedeehdifkebgfhhbflrjccegdrctffnblrub';<br /><br />// Admin PIN as the 2nd factor of auth<br />//Eg. $pin = '12345678';<br />$pin = '12345';<br /><br />// This is the AES secret inside your key<br />// Eg. $aesParams&#91;'__ADM_KEY_SECRET__'&#93; = '7Bs1Rl4Itr2+ZmbyO/KCWQ==';<br />$aesParams&#91;'__ADM_KEY_SECRET__'&#93; = 'eXViaWNvdmFsaWRhdGlvbnNlcnZlcg==';<br /><br /><br />/********** End of section to erase after installation *******/<br /><br />// Make up a random secret to encrypt data in DB in b64 format<br />// Eg. $aesParams&#91;'__ENC_KEY_SECRET__'&#93; = 'cretsec';<br />$aesParams&#91;'__ENC_KEY_SECRET__'&#93; = 'WXViaWNvWXViaWtleQ==';<br /><br />//// DB, email and web related<br />//<br />$baseParams = array ();<br />$baseParams&#91;'__DB_HOST__'&#93; = 'localhost';<br />$baseParams&#91;'__DB_USER__'&#93; = 'yubico';<br />$baseParams&#91;'__DB_PW__'&#93; = 'yub1c0';<br />$baseParams&#91;'__DB_NAME__'&#93; = 'yubico';<br /><br />// Eg. $baseParams&#91;'__ROOT_EMAIL__'&#93; = 'support@yubico.com';<br />$baseParams&#91;'__ROOT_EMAIL__'&#93; = 'dion.rowney@gmail.com';<br /><br />$baseParams&#91;'__ORDER_URL__'&#93; = 'http://yubico.com/products/order/';<br />$baseParams&#91;'__DOMAIN__'&#93; = 'localhost';<br /><br />// Eg. $baseParams&#91;'__DOC_ROOT__'&#93; = '/apache/htdocs/'<br />$baseParams&#91;'__DOC_ROOT__'&#93; = '/var/www';<br /><br /><br />//// Validation server<br />//<br /><br />$valParams = array ();<br />$valParams&#91;'__VAL_URL__'&#93; = 'http://localhost/wsapi/verify.php?id=';<br /><br />//// HTML related<br />//<br />$headParams = array ();<br />$headParams&#91;'__SHORTCUT_ICON_URL__'&#93; = 'http://localhost/kms/images/favicon.ico';<br /><br />//// KMS admin activation welcome letter<br />//<br />$letterParams = array ();<br />$letterParams&#91;'__KMS_URL__'&#93; = 'http://localhost/kms';<br /><br /></div><br /><br />and some otps<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">hbhdheebedeebtelvcegicernitfrggtblntntirvhgg<br />hbhdheebedeeujdjujrrujbjtgkiekkddujeelvjjgcc<br />hbhdheebedeejerdfrreuifjblkljjnnnhuvididrctu<br />hbhdheebedeedulhncujiibgjjnlbflvibhidthulcle<br />hbhdheebedeehlgtdifhcrbbhrercrcuirnclllutuef<br /><br /></div><p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=189">dion.rowney</a> — Tue Dec 23, 2008 2:56 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[network-marvels]]></name></author>
<updated>2008-12-23T08:25:37+01:00</updated>
<published>2008-12-23T08:25:37+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=830#p830</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=830#p830"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=830#p830"><![CDATA[
We would appreciate if you can share following information with us.<br /><br /><ul>1) yubiphpbase config.php file<br />2) Five OTPs generated from your YubiKey<br /></ul><br />This would help us to figure out a problem you are facing.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=280">network-marvels</a> — Tue Dec 23, 2008 8:25 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[dion.rowney]]></name></author>
<updated>2008-12-23T06:22:53+01:00</updated>
<published>2008-12-23T06:22:53+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=829#p829</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=829#p829"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=829#p829"><![CDATA[
adding the -ofixed seemed add the extra 12 chars at the front to make it 44, but still not luck<br /><br /><br />So it definately looks like they key programming if root cause.  Is the following what would be correct for the above example to work?  and set otp=to an output?  or is the passphase aes key the other secret?<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">root@eee:~/yubikey-personalization-read-only# ./ykpersonalize -ouid=abc123 -ofixed=abc123<br />Passphrase to create AES key: yubicovalidationserver<br />Firmware version 1.3.0 Touch level 9376 Program sequence 24<br />fixed:hbhdheebedee<br />uid:hbhdheebedee<br />key:nfrrcjjhjnglvdtfktgctjcjfjulduig<br />acc_code:cccccccccccc<br />ticket_flags:APPEND_CR<br />config_flags:<br />root@eee:~/yubikey-personalization-read-only# <br /></div><p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=189">dion.rowney</a> — Tue Dec 23, 2008 6:22 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[network-marvels]]></name></author>
<updated>2008-12-22T13:49:31+01:00</updated>
<published>2008-12-22T13:49:31+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=827#p827</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=827#p827"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=827#p827"><![CDATA[
<div class="quotetitle">dion.rowney wrote:</div><div class="quotecontent"><br />I assume $opt=&quot;&quot;; is a key press of my earlier programmed key?<br /></div><br /><br />In the yubiphpbase config.php file, we have to store a OTP generated from reprogrammed YubiKey.<br /><br />The stored OTP in the config.php file must be 44 characters long (First 12 characters of Static ID + 32 characters of OTP)<br /><br />The first 12 charectors of OTP representing static ID will be first decoded from modHAX and the decoded static ID will be encoded in base64 format and stored in Database.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=280">network-marvels</a> — Mon Dec 22, 2008 1:49 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[dion.rowney]]></name></author>
<updated>2008-12-21T19:03:26+01:00</updated>
<published>2008-12-21T19:03:26+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=826#p826</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=826#p826"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=826#p826"><![CDATA[
I tried <br /><br /><!-- m --><a class="postlink" href="http://192.168.100.10/wsapi/verify_debug.php?id=1&amp;otp=lbgrkdtbjhdfcrhhhllhtvnfblfbhveu">http://192.168.100.10/wsapi/verify_debu ... nfblfbhveu</a><!-- m --><br /><br />and get:<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">&lt;p&gt;Debug&gt; Invalid Yubikey gjndfgngdkkl<br />status=BAD_OTP<br />info=gjndfgngdkklvcjgebindtfivnenigdt<br />t=2008-12-21T18:00:36<br />&lt;p&gt;Debug&gt; SIGN: info=gjndfgngdkklvcjgebindtfivnenigdt&amp;status=BAD_OTP&amp;t=2008-12-21T18:00:36<br />h=Ju1U9ETdOBgtxKqsO6x9B5EEyR0=<br /></div><br /><br />I also noticed that it does not appear to prepend the key identity to the otp (as seen by the following sequential keys):<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">jhblvdnekterkuddhrcniidnrkgvugbt<br />uebnhhnjlcrdgvdbghfjbkgnlbcjirti<br />nkktenriengnegdevcvrcfulindhtetv<br />undcvehjcngrkvegigerdljbngnkhhnb<br />tluitcffjrhbngidlnfbenthvgtgitbe<br /></div><br /><br />Did I program the key incorrectly  I thought the 1st 12 characters were static??<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=189">dion.rowney</a> — Sun Dec 21, 2008 7:03 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[dion.rowney]]></name></author>
<updated>2008-12-21T06:54:20+01:00</updated>
<published>2008-12-21T06:54:20+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=825#p825</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=825#p825"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=825#p825"><![CDATA[
I assume $opt=&quot;&quot;; is a key press of my earlier programmed key?<br /><br />Assuming this I installed using these configs and get this in the kms.log file:<br /><br />2008-12-20 22:10:00: OTP failed: Key authentication failed: Could not parse response, otp=ndnurjtddcgdfbcrhubneefdgikhrtuc12345 by 192.168.100.13<br /><br />I even tried without the PIN concatinated and get the same:<br /><br />2008-12-20 23:52:47: OTP failed: Key authentication failed: Could not parse response, otp=rguvvirtcdchgrkkkghbdvihgflivcgh by 192.168.100.13<br /><br />ideas?<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=189">dion.rowney</a> — Sun Dec 21, 2008 6:54 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[network-marvels]]></name></author>
<updated>2008-12-16T16:13:27+01:00</updated>
<published>2008-12-16T16:13:27+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=821#p821</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=821#p821"/>
<title type="html"><![CDATA[Re: Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=821#p821"><![CDATA[
We are assuming following parameters for hosting a Yubico Validation Server:<br /><br /><ul>1)Pin for two factor authentication : 12345<br />2)AES secret Key: yubicovalidationserver (Base64 encoded output: eXViaWNvdmFsaWRhdGlvbnNlcnZlcg== )<br />3)Random Secret: YubicoYubikey (Base64 encoded output: WXViaWNvWXViaWtleQ==)<br />4)MySQL Database Server hostname: sql.test.com<br />5)MySQL User name : yubico<br />6)MySQL User password: test123<br />7)MySQL Database name: yubikey<br />8)Root Email Address: <!-- e --><a href="mailto:admin@test.com">admin@test.com</a><!-- e --><br />9)Apache http document root: /var/www/html<br /></ul><br />The content of yubiphpbase config.php based on above parameters would be:<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">&lt;?php<br />/******************************************************<br /> *<br /> *      Customize EVERY parameter for your environment<br /> *<br /> ******************************************************/<br /><br />//// AES secrets<br />//<br />$aesParams = array ();<br /><br />/******* Erase this section after installation *******/<br />* <br /><br />// OTP from your admin key you are to use to log in to KMS<br />// Eg. $otp = 'gklhtdkvrbfnbuicngergckgdfvfrbfjfhgiffghcithv';<br />$otp = 'vrkvfefuitvfiuibirllecjgbbnfhhirchithtvfrrbd';<br /><br />// Admin PIN as the 2nd factor of auth<br />//Eg. $pin = '12345678';<br />$pin = '12345'; <br /><br />// This is the AES secret inside your key<br />// Eg. $aesParams&#91;'__ADM_KEY_SECRET__'&#93; = '7Bs1Rl4Itr2+ZmbyO/KCWQ==';<br />$aesParams&#91;'__ADM_KEY_SECRET__'&#93; = 'eXViaWNvdmFsaWRhdGlvbnNlcnZlcg=='; <br /><br />*<br />********** End of section to erase after installation *******/<br /><br />// Make up a random secret to encrypt data in DB in b64 format<br />// Eg. $aesParams&#91;'__ENC_KEY_SECRET__'&#93; = 'gklftrkvbvcbfhdafbedtjerrbbcgkuk';<br />$aesParams&#91;'__ENC_KEY_SECRET__'&#93; = 'WXViaWNvWXViaWtleQ=='; <br /><br />//// DB, email and web related<br />//<br />$baseParams = array ();<br />$baseParams&#91;'__DB_HOST__'&#93; = 'sql.test.com';   <br />$baseParams&#91;'__DB_USER__'&#93; = 'yubico'; <br />$baseParams&#91;'__DB_PW__'&#93; = 'test123'; <br />$baseParams&#91;'__DB_NAME__'&#93; = 'yubikey'; <br /><br />// Eg. $baseParams&#91;'__ROOT_EMAIL__'&#93; = 'support@yubico.com';  <br />$baseParams&#91;'__ROOT_EMAIL__'&#93; = 'admin@test.com'; <br /><br />$baseParams&#91;'__ORDER_URL__'&#93; = 'http://yubico.com/products/order/';<br />$baseParams&#91;'__DOMAIN__'&#93; = 'localhost'; <br /><br />// Eg. $baseParams&#91;'__DOC_ROOT__'&#93; = '/apache/htdocs/'<br />$baseParams&#91;'__DOC_ROOT__'&#93; = '/var/www/html'; <br /><br />//// Validation server<br />//<br /><br />$valParams = array ();<br />$valParams&#91;'__VAL_URL__'&#93; = 'http://localhost/wsapi/verify.php?id=';<br /><br />//// HTML related<br />//<br />$headParams = array ();<br />$headParams&#91;'__SHORTCUT_ICON_URL__'&#93; = 'http://localhost/kms/images/favicon.ico';<br /><br />//// KMS admin activation welcome letter<br />//<br />$letterParams = array ();<br />$letterParams&#91;'__KMS_URL__'&#93; = 'http://localhost/kms';<br /><br />?&gt;<br /><br /></div><br /><br /><br />As the AES key generated using the &quot;ykpersonalize&quot; tool is modhex encoded, we need to first decode (modhex decode) the AES key, then convert the decoded key to base64 encoded format and store it into the config.php file.<br /><br />We are currently upgrading Yubico personalization tool and Yubico Management Server. The new versions would be released soon which would address all the above mentioned issues.<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=280">network-marvels</a> — Tue Dec 16, 2008 4:13 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[dion.rowney]]></name></author>
<updated>2008-12-14T21:53:38+01:00</updated>
<published>2008-12-14T21:53:38+01:00</published>
<id>https://forum.yubico.com/viewtopic.php?t=212&amp;p=820#p820</id>
<link href="https://forum.yubico.com/viewtopic.php?t=212&amp;p=820#p820"/>
<title type="html"><![CDATA[Programming keys and configuringing server side]]></title>

<content type="html" xml:base="https://forum.yubico.com/viewtopic.php?t=212&amp;p=820#p820"><![CDATA[
Hi,<br /><br />I have successfully been able to program my key using the linux key personalizer and verified it with the ./ykdebug utility.  I am now trying to configure the server and think I am doing all the right things but it doesnt want to cooperate.<br /><br />I am hoping someone can help by showing me what I am doing wrong.  Here is the programming of the key and the config file.  Please show me what it should be based on the programmin og the key portion:<br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">root@eee:~/yubikey-personalization-read-only# ./ykpersonalize -ouid=abc123<br />Passphrase to create AES key: secretstuff<br />Firmware version 1.3.0 Touch level 9328 Program sequence 21<br />fixed:<br />uid:hbhdheebedee<br />key:hljcnnigitbvbfliftdrdukrgkehiikh<br />acc_code:cccccccccccc<br />ticket_flags:APPEND_CR<br />config_flags:<br />root@eee:~/yubikey-personalization-read-only# rmmod usbhid &amp;&amp; modprobe usbhid<br />root@eee:~/yubikey-personalization-read-only# cd ../yubico-c-read-only/<br />root@eee:~/yubico-c-read-only# ls<br />aclocal.m4      configure.ac   Makefile     README            ykdebug.o<br />AUTHORS         COPYING        Makefile.am  selftest          yubikey.c<br />autom4te.cache  depcomp        Makefile.in  selftest.c        yubikey.h<br />config.guess    INSTALL        missing      selftest.o        yubikey.lo<br />config.log      install-sh     modhex       simple.mk         yubikey.o<br />config.status   libtool        modhex.c     test-vectors.txt<br />config.sub      libyubikey.la  modhex.o     ykdebug<br />configure       ltmain.sh      NEWS         ykdebug.c<br />root@eee:~/yubico-c-read-only# ./ykdebug hljcnnigitbvbfliftdrdukrgkehiikh kkrhgicjgvdlklcgecthkuneevniuild<br />Input:<br />  token: kkrhgicjgvdlklcgecthkuneevniuild<br />          99 c6 57 08 5f 2a 9a 05 30 d6 9e b3 3f b7 e7 a2<br />  aeskey: hljcnnigitbvbfliftdrdukrgkehiikh<br />          6a 80 bb 75 7d 1f 14 a7 4d 2c 2e 9c 59 36 77 96<br />Output:<br />          61 62 63 31 32 33 01 00 5e 70 d5 00 79 f1 e2 93<br /><br />Struct:<br />  uid: 61 62 63 31 32 33<br />  counter: 1 (0x0001)<br />  timestamp (low): 28766 (0x705e)<br />  timestamp (high): 213 (0xd5)<br />  session use: 0 (0x00)<br />  random: 61817 (0xf179)<br />  crc: 37858 (0x93e2)<br /><br />Derived:<br />  cleaned counter: 1 (0x0001)<br />  modhex uid: hbhdheebedee<br />  triggered by caps lock: no<br />  crc: F0B8<br />  crc check: ok<br />root@eee:~/yubico-c-read-only#<br /></div><br /><br />What should the contents of this yubiphpbase config.php file be given the above:<br /><br /><div class="codetitle"><b>Code:</b></div><div class="codecontent">/******* Erase this section after installation *******/<br />*<br /><br />// OTP from your admin key you are to use to log in to KMS<br />// Eg. $otp = 'gklhtdkvrbfnbuicngergckgdfvfrbfjfhgiffghcithv';<br />$otp = '...enter yours...';<br /><br />// Admin PIN as the 2nd factor of auth<br />//Eg. $pin = '12345678';<br />$pin = '...enter yours...';<br /><br />// This is the AES secret inside your key<br />// Eg. $aesParams&#91;'__ADM_KEY_SECRET__'&#93; = '7Bs1Rl4Itr2+ZmbyO/KCWQ==';<br />$aesParams&#91;'__ADM_KEY_SECRET__'&#93; = '.....enter yours.....';<br /><br />*<br />********** End of section to erase after installation *******/<br /><br />// Make up a random secret to encrypt data in DB in b64 format<br />// Eg. $aesParams&#91;'__ENC_KEY_SECRET__'&#93; = 'gklftrkvbvcbfhdafbedtjerrbbcgkuk';<br />$aesParams&#91;'__ENC_KEY_SECRET__'&#93; = '.....enter yours.....';<br /><br />//// DB, email and web related<br />//<br />$baseParams = array ();<br />$baseParams&#91;'__DB_HOST__'&#93; = 'localhost';<br />$baseParams&#91;'__DB_USER__'&#93; = '...enter yours...';<br />$baseParams&#91;'__DB_PW__'&#93; = '...enter yours...';<br />$baseParams&#91;'__DB_NAME__'&#93; = '...enter yours...';<br /><br />// Eg. $baseParams&#91;'__ROOT_EMAIL__'&#93; = 'support@yubico.com';<br />$baseParams&#91;'__ROOT_EMAIL__'&#93; = '...enter yours...';<br /><br /><br />$baseParams&#91;'__ORDER_URL__'&#93; = 'http://yubico.com/products/order/';<br />$baseParams&#91;'__DOMAIN__'&#93; = 'localhost';<br /><br />// Eg. $baseParams&#91;'__DOC_ROOT__'&#93; = '/apache/htdocs/'<br />$baseParams&#91;'__DOC_ROOT__'&#93; = '...enter yours...';<br /><br />//// Validation server<br />//<br /><br />$valParams = array ();<br />$valParams&#91;'__VAL_URL__'&#93; = 'http://localhost/wsapi/verify.php?id=';<br /><br />//// HTML related<br />//<br />$headParams = array ();<br />$headParams&#91;'__SHORTCUT_ICON_URL__'&#93; = 'http://localhost/kms/images/favicon.ico';<br /><br />//// KMS admin activation welcome letter<br />//<br />$letterParams = array ();<br />$letterParams&#91;'__KMS_URL__'&#93; = 'http://localhost/kms';<br /></div><br /><br /><br />thanks<p>Statistics: Posted by <a href="https://forum.yubico.com/memberlist.php?mode=viewprofile&amp;u=189">dion.rowney</a> — Sun Dec 14, 2008 9:53 pm</p><hr />
]]></content>
</entry>
</feed>