Home
last modified time | relevance | path

Searched refs:_sha3 (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/
Dhashlib.py99 import _sha3
100 cache['sha3_224'] = _sha3.sha3_224
101 cache['sha3_256'] = _sha3.sha3_256
102 cache['sha3_384'] = _sha3.sha3_384
103 cache['sha3_512'] = _sha3.sha3_512
104 cache['shake_128'] = _sha3.shake_128
105 cache['shake_256'] = _sha3.shake_256
/external/python/cpython3/Lib/test/
Dtest_hashlib.py37 import _sha3
39 _sha3 = None variable
41 requires_sha3 = unittest.skipUnless(_sha3, 'requires _sha3')
149 _sha3 = self._conditional_import_module('_sha3')
150 if _sha3:
/external/python/cpython3/Modules/
DSetup.dist253 #_sha3 _sha3/sha3module.c
/external/python/cpython3/Misc/NEWS.d/
D3.7.3rc1.rst395 Fixed a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py.
/external/python/cpython3/
DMakefile.pre.in544 '*/Modules/_sha3/kcp/*' \
/external/python/cpython3/Misc/
DHISTORY3633 - Issue #19520: Fix compiler warning in the _sha3 module on 32bit Windows.