cryptography-security
Installation
SKILL.md
What I do
- Implement encryption at rest and in transit
- Design key management systems
- Use modern cryptographic libraries correctly
- Implement digital signatures and certificates
- Secure password storage
- Handle cryptographic secrets
When to use me
When implementing encryption, secure storage, or any cryptographic operations in code.
Encryption at Rest
AES-256 Encryption
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from cryptography.hazmat.backends import default_backend
import os
import base64