aes/readme.md

27 lines
813 B
Markdown
Raw Normal View History

---
author: Antoine Roux <antoinroux@hotmail.fr>
date: 2020-04-27T02:17:42+02:00
title: "cryptomain.ex"
subtitle: "aes crypt / decrypt"
abstract: "allow to crypt and decrypt file with aes algorithm"
description: |
this repository contain aes c++ program
this program allow to crypt and decrypt file
lang: en-GB
---
# this repository contains 3 mains :
2016-03-07 09:43:54 +00:00
- crypto.ex use for test ( take a file, crypt and decrypt this file in one step )
products a crypted and decrypted file.
- crypt.ex : allow to crypt a file with aes algorithms
./crypt.ex <FileToCrypt>
products the crypted file and a json file which contain aes key and aes IV key.
- decrypt.ex : allow to uncrypt a file from a crypted file and a json key file.
./decrypt.ex <FileToDecrypt> <aesKeyFile>
products the uncrypted file.
:smiley: