maxDcb / nimAesCrypt

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)

About

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

License:Apache License 2.0


Languages

Language:Nim 100.0%