Heim >Datenbank >MySQL-Tutorial >aboutgpdbpasswordmd5

aboutgpdbpasswordmd5

WBOY
WBOYOriginal
2016-06-07 16:10:491212Durchsuche

gtlions=# alter user gtlions password gtlions;ALTER ROLEgtlions=# select * from pg_shadow; usename | usesysid | usecreatedb | usesuper | usecatupd | userepl | passwd | valuntil | useconfig---------+----------+-------------+----------+-----

gtlions=# alter user gtlions password 'gtlions';
ALTER ROLE
gtlions=# select * from pg_shadow;
 usename | usesysid | usecreatedb | usesuper | usecatupd | userepl |               passwd                | valuntil | useconfig
---------+----------+-------------+----------+-----------+---------+-------------------------------------+----------+-----------
 gtlions |       10 | t           | t        | t         | t       | md56c7d333ce7a7f5882bdc5a232c107d81 |          |
(1 row)

gtlions=# \q

gtlions:~ gtlions$ python
Python 2.7.6 (default, Sep  9 2014, 15:04:36)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import hashlib
>>> password = 'md5' + hashlib.md5("gtlionsgtlions").hexdigest()
>>> password
'md56c7d333ce7a7f5882bdc5a232c107d81'



-EOF-
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn