/nimAesCrypt

Nim file-encryption module that uses AES256-CBC to encrypt/decrypt files.

Primary LanguageNimApache License 2.0Apache-2.0

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)