File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,27 @@ Our goal is to provice a user-friendly and secure way to access the functionalit
16
16
- Provides functions for data encryption and decryption.
17
17
- Implements security mechanisms to ensure the confidentiality and integrity of data.
18
18
19
+ ## Installation:
20
+
21
+ ** In order for our solution to work, it is required that OpenSSL has been installed successfully.**
22
+
23
+ ### Windows
24
+ [ Download OpenSSL for Windows] ( https://www.heise.de/download/product/win32-openssl-47316/download/danke?id=eb9acc71-f52c-4329-a3cf-cf9bd9172d8c )
25
+
26
+ Make sure to set the environment variables correctly, e.g.:
27
+
28
+ ``` sh
29
+ setx OPENSSL_DIR " C:\Program Files\OpenSSL-Win64"
30
+ setx OPENSSL_INCLUDE_DIR " C:\Program Files\OpenSSL-Win64\include"
31
+ setx OPENSSL_LIB_DIR " C:\Program Files\OpenSSL-Win64\lib"
32
+ ```
33
+
34
+ ### Linux
35
+
36
+ ```
37
+ sudo apt-get install libssl-dev
38
+ ```
39
+
19
40
## Usage:
20
41
21
42
(under construction)
You can’t perform that action at this time.
0 commit comments