Cleaning+comments.
authorGrégory Burri <gregory.burri@matisa.ch>
Wed, 7 Aug 2019 12:51:40 +0000 (14:51 +0200)
committerGrégory Burri <gregory.burri@matisa.ch>
Wed, 7 Aug 2019 12:51:40 +0000 (14:51 +0200)
README.md
src/crypto.rs

index 4308f25..c50b374 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
     * PS> cd vcpkg\r
     * PS> .\bootstrap-vcpkg.bat\r
 * Install openssl dev livb\r
-    * PS> vcpkg install openssl:x64-windows\r
+    * PS> .\vcpkg.exe install openssl:x64-windows\r
 * Define these env variables:\r
     * $env:VCPKG_ROOT=<path to vcpkg installation>\r
     * $env:OPENSSL_DIR=<path to vcpkg installation>\installed\x64-windows\r
index 7e707d0..f415fa1 100644 (file)
@@ -33,8 +33,7 @@ fn decode_key(key: &str) -> Result<Vec<u8>, KeyError> {
 }\r
 \r
 /// Encrypt the given text with the given key. The key length must be 128 bits encoded in base64.\r
-/// Ouput format:\r
-/// Format "1" + base_64(<IV> + <hash(message)> + <aes(message)>)\r
+/// Ouput format: "1" + base_64(<IV> + <hash(message)> + <aes(message)>)\r
 /// IV: 16 bytes randomized.\r
 /// Mode : CBC.\r
 pub fn encrypt(key: &str, plain_text: &str) -> Result<String, EncryptError> {\r
@@ -59,7 +58,8 @@ pub fn encrypt(key: &str, plain_text: &str) -> Result<String, EncryptError> {
     Ok(String::from("1") + &base64::encode(&result))\r
 }\r
 \r
-/// TODO: return a Result<string, DecryptError>\r
+/// Decrypt the given text with the given key. The key length must be 128 bits encoded in base64.\r
+/// Input format: "1" + base_64(<IV> + <hash(message)> + <aes(message)>)\r
 pub fn decrypt(key: &str, cipher_text: &str) -> Result<String, DecryptError> {\r
     let key_as_bytes = decode_key(key).map_err(|e| DecryptError::KeyError(e))?;\r
 \r