Encryption

SSH Key

ssh-keygen -t ed25519 -C "[email protected]"

Algorithms

Algorithm NameTypeSecurity LevelUse Cases
AESSymmetricHighly SecureTLS, File Encryption, VPNs
ChaCha20SymmetricHighly SecureTLS, Mobile Encryption
DESSymmetricWeak (Deprecated)Legacy Systems
3DESSymmetricModerateLegacy Banking Systems
BlowfishSymmetricModerateFile Encryption, VPNs
RSAAsymmetricSecure (With Large Keys)Digital Signatures, TLS, SSH
Curve25519AsymmetricHighly SecureTLS, Cryptographic Wallets
NISTAsymmetricHighly SecureTLS, Cryptographic Wallets
Diffie-HellmanAsymmetricSecureKey Exchange, VPNs
DSAAsymmetricSecureDigital Signatures
KyberAsymmetricPost-Quantum SecureKey Exchange, TLS
DilithiumAsymmetricPost-Quantum SecureDigital Signatures
FalconAsymmetricPost-Quantum SecureDigital Signatures
BIKEAsymmetricPost-Quantum SecureKey Exchange
NTRUAsymmetricPost-Quantum SecurePublic Key Encryption
SPHINCS+AsymmetricPost-Quantum SecureDigital Signatures

Curve25519

Crate: ring Type: Asymetric Security: Highly Secure Use Cases: TLS, Cryptographic Wallets Key Exchange Method: Public/Private Key Computtational Complexity: High

Curve25519 is a high-speed elliptic curve designed for use in asymmetric cryptography and key agreement.

Key features:

NIST

Crate: ring Type: Asymetric Security: Highly Secure Use Cases: TLS, Cryptographic Wallets Key Exchange Method: Public/Private Key Computtational Complexity: High

NIST elliptic curves are standardized curves commonly used in cryptographic protocols. In Rust, you can use them via the ring crate:

Key features:

NTRU

Crate: pgcrypto-ntru

NTRU (N-th degree TRUncated polynomial ring) is a lattice-based cryptosystem.

Key features:

AES - Advanced Encryption Standard (Symetric)

AES is a widely-used symmetric block cipher providing fast, secure encryption. In Rust, you can use it via the aes-gcm crate for authenticated encryption:

Key features:

ChaCha20 (Symetric)

ChaCha20 is a high-performance stream cipher that’s often paired with Poly1305 for authenticated encryption. It’s designed to be faster than AES on platforms without dedicated hardware acceleration. In Rust, you can use it via the chacha20poly1305 crate:

Key features:

Termonology

Asymetric

Asymetric Algorithims are where there is a public key and private key. Used for when you want to publicly send the encryption key and keep the decription private.

Symetic

Symetic Algorithms have oney key that encrypts and decryps the data.

Encryption by Gavin Daly is licensed under CC BY-NC-SA 4.0 Creative Commons Icon Attribution Icon Non-Commercial Icon Share-Alike Icon

s