TYPO3  7.6
saltedpasswords/ext_emconf.php
Go to the documentation of this file.
1 <?php
2 $EM_CONF[$_EXTKEY] = array(
3  'title' => 'Salted user password hashes',
4  'description' => 'Uses a password hashing framework for storing passwords. Integrates into the system extension "felogin". Use SSL or rsaauth to secure datatransfer! Please read the manual first!',
5  'category' => 'services',
6  'state' => 'stable',
7  'uploadfolder' => 0,
8  'createDirs' => '',
9  'clearCacheOnLoad' => 1,
10  'author' => 'Marcus Krause, Steffen Ritter',
11  'author_email' => 'marcus#exp2009@t3sec.info',
12  'author_company' => 'TYPO3 Security Team',
13  'version' => '7.6.0',
14  'constraints' => array(
15  'depends' => array(
16  'typo3' => '7.6.0-7.6.99',
17  ),
18  'conflicts' => array(
19  'kb_md5fepw' => '',
20  'newloginbox' => '',
21  'pt_feauthcryptpw' => '',
22  't3sec_saltedpw' => ''
23  ),
24  'suggests' => array(
25  'rsaauth' => ''
26  ),
27  ),
28 );