No description
Find a file
Maxime de Caumia Baillenx fc023fcd7e Initial commit
2023-04-18 15:18:58 +02:00
tests Initial commit 2023-04-18 15:18:58 +02:00
.gitignore Initial commit 2023-04-18 15:18:58 +02:00
LICENSE Initial commit 2023-04-18 15:13:18 +02:00
nimAesCrypt.nim Initial commit 2023-04-18 15:18:58 +02:00
nimAesCrypt.nimble Initial commit 2023-04-18 15:18:58 +02:00
README.md Initial commit 2023-04-18 15:18:58 +02:00

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)