https://github.com/thiagosousa81/serie-criptografias
Exemplos da Série Criptografias
https://github.com/thiagosousa81/serie-criptografias
criptography math
Last synced: 11 months ago
JSON representation
Exemplos da Série Criptografias
- Host: GitHub
- URL: https://github.com/thiagosousa81/serie-criptografias
- Owner: ThiagoSousa81
- License: cc0-1.0
- Created: 2024-07-25T14:25:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T11:52:16.000Z (over 1 year ago)
- Last Synced: 2025-05-13T14:52:10.227Z (about 1 year ago)
- Topics: criptography, math
- Language: PowerShell
- Homepage: https://www.youtube.com/watch?v=XAWG-Wnwg2w&list=PLo7vhVXZt9nxuVBS7tu9hu78duaQ6BSKi&pp=gAQBiAQB
- Size: 6.41 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Série Criptografias
Uma abordagem geral para compreensão do assunto
### Acompanhe esta série no [You-Tube](https://www.youtube.com/watch?v=XAWG-Wnwg2w&list=PLo7vhVXZt9nxuVBS7tu9hu78duaQ6BSKi&pp=gAQBiAQB)
## Slides
Em breve...
## Práticas
OTP
- [Powershell](https://github.com/ThiagoSousa81/serie-criptografias/blob/main/OTP/OTP.ps1)
- [Python](https://github.com/ThiagoSousa81/serie-criptografias/blob/main/OTP/OTP.py)
DES
- [PowerShell](https://github.com/ThiagoSousa81/serie-criptografias/blob/main/DES/DES.ps1)
- [Python](https://github.com/ThiagoSousa81/serie-criptografias/blob/main/DES/DES.py)
## Execução no Linux
# Criação do ambiente
python3 -m venv libs
# Ativar o ambiente
source libs/bin/activate
# Instalar bibliotecas
pip install pycryptodome
# Desativar o ambiente
deactivate
Em breve mais algorítmos explicados para você!