Metadata-Version: 2.1
Name: crypto-cr
Version: 0.0.0
Summary: This project refers to a password encryptor, which also serves to encrypt and decrypt files through a password entered by users
Home-page: https://github.com/NaraAndrad3/Cripto
Author: Vinicius Nunes & Nara Raquel
Author-email: viniciusnunes02612@gmail.com 
Maintainer: Nara Raquel Dias Andrade
Maintainer-email: naradiasspn1967@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: hashlib
Requires-Dist: cryptography
Requires-Dist: base64
Requires-Dist: string
Requires-Dist: random

# CRYPTO_CR
==========



This project refers to a password encryptor, which also serves to encrypt and decrypt files through a password entered by users. <br>
[Project Cripto](https://github.com/NaraAndrad3/Cripto/)
to write your content.


<h3><li>1 - Para instalar o pacote use:</li></h3>

``````
pip install crypto_cr
``````


<h3><li>2 - import o modulo usando:</li></h3>

``````
from crypto_cr import *
``````



<h3><li>3 - Formas de usar o pacote:</li></h3>

``````
#Encriptando e decriptando o arquivo

f = FilesDec()



print('Criptografar: ')
arq = 'arquivo.pdf'
f.encryptFile(arq,'1234')


print('Decriptografar: ')
f.decryptFiles(arq,'1234')


#Gerando senhas
senha1 = pwd.password_letters(8)

``````
