Lines Matching refs:new
7 new(name, data=b'', **kwargs) - returns a new hash object implementing the
12 than using new(name):
19 to find out what algorithm names can be passed to new().
56 # This tuple and __get_builtin_constructor() must be modified if a new
67 __all__ = __always_supported + ('new', 'algorithms_guaranteed',
132 """new(name, data=b'', **kwargs) - Return a new hashing object using the
140 """new(name, data=b'') - Return a new hashing object using the named algorithm;
150 return _hashlib.new(name, data)
161 new = __hash_new
166 new = __py_new
192 inner = new(hash_name)
193 outer = new(hash_name)
196 password = new(hash_name, password).digest()