Metadata-Version: 2.1
Name: entangle
Version: 0.0.0
Summary: Check and get file hashes (using any algorithm)
Home-page: https://github.com/pypa/sampleproject
Author: social-learning
Author-email: ben.yan.fan@gmail.com
License: UNKNOWN
Description: # sha
        Check and get file hashes (using any algorithm)
        
        ## Installation
        
            $ pip install sha
        ## API
        
        ### check(fileName, expected, [options,] cb) / checkSync(filename, expected, [options])
        
        Asynchronously check that `fileName` has a "hash" of `expected`.  The callback will be called with either `null` or an error (indicating that they did not match).
        
        Options:
        
        - algorithm: defaults to `sha1` and can be any of the algorithms supported by `crypto.createHash`
        
        ### get(fileName, [options,] cb) / getSync(filename, [options])
        
        Asynchronously get the "hash" of `fileName`.  The callback will be called with an optional `error` object and the (lower cased) hex digest of the hash.
        
        Options:
        
        - algorithm: defaults to `sha1` and can be any of the algorithms supported by `crypto.createHash`
        
        ### stream(expected, [options])
        
        Check the hash of a stream without ever buffering it.  This is a pass through stream so you can do things like:
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8.5
Description-Content-Type: text/markdown
