Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_sql.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-02-28 23:37:51 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-02-28 23:43:42 +0300
commit7872d98dd63a377b8ebf1dc486cff05e26252b49 (patch)
tree93139c1146c958476815a27ed324a82d8c8880f7 /templates
parent3251067b38c6ccdb87e1731ce6a3c59f3082feab (diff)
SHA1 and MD5 hash implementation.
Diffstat (limited to 'templates')
-rw-r--r--templates/admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/admin.php b/templates/admin.php
index fbc35d8..a181c11 100644
--- a/templates/admin.php
+++ b/templates/admin.php
@@ -104,7 +104,7 @@ $cfgClass = 'section';
<p><label for="set_crypt_type"><?php p($l->t('Encryption Type')); ?></label>
<?php $crypt_types = array(
'drupal' => 'Drupal 7',
- 'md5' => 'MD5',
+ 'MD5' => 'MD5',
'md5crypt' => 'MD5 Crypt',
'Cleartext' => 'Cleartext',
'mysql_encrypt' => 'mySQL ENCRYPT()',
@@ -115,7 +115,7 @@ $cfgClass = 'section';
'joomla2' => 'Joomla > 2.5.18 phpass',
'ssha256' => 'Salted SSHA256',
'redmine' => 'Redmine',
- 'sha1' => 'SHA1',
+ 'SHA1' => 'SHA1',
'courier_md5' => 'Courier base64-encoded MD5',
'courier_md5raw' => 'Courier hexadecimal MD5',
'courier_sha1' => 'Courier base64-encoded SHA1',