cryptography
Installation
SKILL.md
What I do
- Explain cryptographic primitives and their uses
- Implement symmetric and asymmetric encryption
- Design secure key exchange protocols
- Implement hashing and digital signatures
- Choose appropriate algorithms for use cases
When to use me
When learning about cryptography or implementing cryptographic solutions.
Symmetric Encryption
AES Modes of Operation
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from cryptography.hazmat.backends import default_backend
import os