An open API service indexing awesome lists of open source software.

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

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ê!