add a README file

This commit is contained in:
antoine 2016-03-07 10:43:54 +01:00
parent 32df0c3a32
commit 375312eeab
1 changed files with 11 additions and 0 deletions

11
README Normal file
View File

@ -0,0 +1,11 @@
this repository contains 3 mains :
- 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.