Metadata-Version: 2.1
Name: crack
Version: 0.0.6
Summary: Crack tools all here!
Home-page: https://leesoar.com
Author: leesoar
Author-email: secure@tom.com
License: MIT
Description: 
        ## Crack
        
        Crack tools all here!
        
        Currently support custom base64, other will be coming soon.
        
        Thanks for use.
        
        
        ### How to use
        #### Base64
        ```python
        import crack
        
        
        crack.b64encode(b"leesoar.com", b64_map="9240gsB6PftGXnlQTw_pdvz7EekDmuAWCVZ5UF-MSK1IHOchoaxqYyj8Jb3LrNiR")
        # Return: DBvFmjNVmZb5DjY=
        
        crack.b64decode("DBvFmjNVmZb5DjY=", b64_map="9240gsB6PftGXnlQTw_pdvz7EekDmuAWCVZ5UF-MSK1IHOchoaxqYyj8Jb3LrNiR")
        # Return: b'leesoar.com'
        ```
        
        > It will check if there is "user-agent" in headers. If not, "user-agent" will update with random.
        
        #### Array's partition
        ```python
        import crack
        
        
        [print(x, end=", ") for x in crack.partition("gmapi.cn", size=3)]
        # Print: gma, pi., cn, 
        
        
        [print(x) for x in crack.partition(["g", "m", "a", "p", "i", ".", "c", "n"], size=3)]
        # Print: ['g', 'm', 'a'], ['p', 'i', '.'], ['c', 'n'], 
        ```
        
Keywords: crack,base64,exploit,rsa,aes,md5,pdd
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.3.0
Description-Content-Type: text/markdown
