mirror of
https://github.com/maxDcb/nimAesCrypt
synced 2026-01-15 05:31:47 +00:00
No description
| tests | ||
| .gitignore | ||
| LICENSE | ||
| nimAesCrypt.nim | ||
| nimAesCrypt.nimble | ||
| README.md | ||
nimAesCrypt
About nimAesCrypt
nimAesCrypt is a reimplementation of pyAesCrypt in nim.
nimAesCrypt is a nim file-encryption module that uses AES256-CBC to encrypt/decrypt files.
Module usage example
Here is an example showing encryption and decryption of a file:
import nimAesCrypt
encryptFile("file.txt", "file.aes", "long-and-random-password", 1024)
decryptFile("file.aes", "fileDecrypt.txt", "long-and-random-password", 1024)