Overview of CryptoSwift features
masterCryptoSwift is a pure Swift implementation of various cryptographic functions and helpers. It provides extensions for String and Data and supports incremental updates (streams).
Supported Platforms:
- iOS, Android, macOS, AppleTV, watchOS, Linux
Core Cryptographic Capabilities:
- Hash (Digest): MD5, SHA1, SHA2 (224, 256, 384, 512), SHA3
- CRC: CRC32, CRC32C, CRC16
- Cipher: AES (128, 192, 256), ChaCha20, XChaCha20, Rabbit, Blowfish
- RSA: Encryption and Signature
- Message Authenticators: Poly1305, HMAC (MD5, SHA1, SHA256), CMAC, CBC-MAC
- Cipher Modes: ECB, CBC, PCBC, CFB, OFB, CTR, GCM, CCM, OCB
- Key Derivation (KDF): PBKDF1, PBKDF2, HKDF, Scrypt
- Padding: PKCS#5, EMSA-PKCS1-v1_5, EME-PCKS1-v1_5, PKCS#7, Zero padding, ISO78164, ISO10126
- AEAD: AEAD_CHACHA20_POLY1305, AEAD_XCHACHA20_POLY1305