Update of /cvsroot/phpwebsite-comm/modules/openid/conf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29419/conf
Modified Files:
config.php
Log Message:
Detection script must pass before admin can enable OpenID log in.
Index: config.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/openid/conf/config.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** config.php 4 Feb 2008 04:54:30 -0000 1.1.1.1
--- config.php 10 Feb 2008 16:17:09 -0000 1.2
***************
*** 28,30 ****
--- 28,40 ----
define('OPENID_STORE_PATH', '/tmp/openid_consumer');
+ /**
+ * The filename for a source of random bytes. If your platform does not provide
+ * a secure randomness source, this module can operate in pseudorandom mode,
+ * but it is then vulnerable to theoretical attacks. If you wish to operate in
+ * pseudorandom mode, define Auth_OpenID_RAND_SOURCE to null.
+ *
+ * On a Unix-like platform, try /dev/random and /dev/urandom.
+ */
+ define('Auth_OpenID_RAND_SOURCE', '/dev/urandom');
+
?>
\ No newline at end of file
|