Apache-AuthCookieDBIRadius
view release on metacpan or search on metacpan
AuthCookieDBIRadius.pm view on Meta::CPAN
#The field in the above table that has the user name. This is not required
#and defaults to 'user'.
$c{ DBI_groupuserfield } = _dir_config_var( $r, 'DBI_GroupUserField' ) || 'user';
#<WhatEverDBI_SecretKeyFile>
#The file that contains the secret key (on the first line of the file). This
#is required and has no default value. This key should be owned and only
#readable by root. It is read at server startup time.
#The key should be long and fairly random. If you want, you
#can change it and restart the server, (maybe daily), which will invalidate
#all prior-issued tickets.
unless ( $c{ DBI_secretkeyfile } = _dir_config_var $r, 'DBI_SecretKeyFile' )
{
_log_not_set $r, 'DBI_SecretKeyFile';
return undef;
}
#<WhatEverDBI_EncryptionType>
#What kind of encryption to use to prevent the user from looking at the fields
AuthCookieDBIRadius.pm view on Meta::CPAN
The field in the above table that has the user name. This is not required
and defaults to 'user'.
=item C<WhatEverDBI_SecretKeyFile>
The file that contains the secret key (on the first line of the file). This
is required and has no default value. This key should be owned and only
readable by root. It is read at server startup time.
The key should be long and fairly random. If you want, you
can change it and restart the server, (maybe daily), which will invalidate
all prior-issued tickets.
=item C<WhatEverDBI_EncryptionType>
What kind of encryption to use to prevent the user from looking at the fields
in the ticket we give them. This is almost completely useless, so don't
switch it on unless you really know you need it. It does not provide any
protection of the password in transport; use SSL for that. It can be 'none',
'des', 'idea', 'blowfish', or 'blowfish_pp'.
( run in 0.883 second using v1.01-cache-2.11-cpan-a5abf4f5562 )