Skip to content

Commit 8825c41

Browse files
Update README.md
Erwähnung von OpenSSL in readme
1 parent 57c9ab6 commit 8825c41

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,27 @@ Our goal is to provice a user-friendly and secure way to access the functionalit
1616
- Provides functions for data encryption and decryption.
1717
- Implements security mechanisms to ensure the confidentiality and integrity of data.
1818

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+
1940
## Usage:
2041

2142
(under construction)

0 commit comments

Comments
 (0)