Searched defs:hexlify (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
H A Dtest_array_in_pointer.py3 from binascii import hexlify namespace
9 h = hexlify(memoryview(obj))
H A Dtest_byteswap.py2 from binascii import hexlify namespace
7 return hexlify(memoryview(s)).upper()
/external/python/cpython3/Lib/ctypes/test/
H A Dtest_array_in_pointer.py3 from binascii import hexlify namespace
9 h = hexlify(memoryview(obj)).decode()
H A Dtest_byteswap.py2 from binascii import hexlify namespace
7 return hexlify(memoryview(s)).decode().upper()
/external/curl/tests/python_dependencies/impacket/
H A Dsmbserver.py41 from binascii import hexlify namespace
70 ret_value = {'hash_string':'%s::%s:%s:%s:%s' % (username.decode('utf-16le'), domain.decode('utf-16le'), hexlify(challenge), hexlify(ntresponse)[:32], hexlify(ntresponse)[32:]), 'hash_version':'ntlmv2'}
73 ret_value = {'hash_string':'%s::%s:%s:%s:%s' % (username.decode('utf-16le'), domain.decode('utf-16le'), hexlify(lmresponse), hexlify(ntresponse), hexlify(challenge)), 'hash_version':'ntlm'}
79 ret_value = {'hash_string':'%s::%s:%s:%s:%s' % (username, domain, hexlify(challenge), hexlify(ntresponse)[:32], hexlify(ntrespons
[all...]

Completed in 5092 milliseconds