63 lines
2.2 KiB
Markdown
63 lines
2.2 KiB
Markdown
# MastersThesis
|
|
|
|
## Building
|
|
### LINUX
|
|
- testované na Ubuntu 20.04.5
|
|
|
|
**1. Inštalácia potrebných nástrojov**
|
|
|
|
```sudo apt install cmake gcc libtool libssl-dev make ninja-build git -y```
|
|
|
|
**2. Stiahnutie Open Quantum Safe OpenSSL repozitáru**
|
|
|
|
```git clone --branch OQS-OpenSSL_1_1_1-stable https://github.com/open-quantum-safe/openssl.git```
|
|
|
|
**3. Stiahnutie a inštalácia liboqs**
|
|
|
|
```
|
|
git clone --branch main https://github.com/open-quantum-safe/liboqs.git
|
|
cd liboqs
|
|
mkdir build && cd build
|
|
cmake -GNinja -DCMAKE_INSTALL_PREFIX=../../openssl/oqs ..
|
|
ninja
|
|
ninja install
|
|
```
|
|
**4. Build QS OpenSSL fork**
|
|
|
|
```
|
|
cd ./openssl
|
|
./Configure no-shared linux-x86_64 -DOQS_DEFAULT_GROUPS=\"kyber1024:p521_kyber1024:kyber90s1024:p521_kyber90s1024\" -lm
|
|
make -j 1
|
|
sudo make install
|
|
```
|
|
- prepínač `-DOQS_DEFAULT_GROUPS` umožňuje meniť key exchange algoritmy, ktoré bude server podporovať
|
|
- zoznam všetkých podporovaných algoritmov - https://github.com/open-quantum-safe/openssl#key-exchange
|
|
|
|
**5. Vytvorenie CA kľúča a certifikátu**
|
|
- v tomto príklade je *p256_dilithium2* hybridný algoritmus *dilithium2* s použitím P256 ECDH krivkou
|
|
|
|
```
|
|
cd ./openssl/apps
|
|
./openssl req -x509 -new -newkey p256_dilithium2 -keyout p256_dilithium2_CA.key -out p256_dilithium2_CA.crt -nodes -subj "/CN=oqstest CA" -days 365 -config ./openssl.cnf
|
|
```
|
|
**6. Vygenerovanie privátneho kľúča pre server**
|
|
```
|
|
./openssl req -new -newkey p256_dilithium2 -keyout p256_dilithium2_srv.key -out p256_dilithium2_srv.csr -nodes -subj "/CN=localhost" -config ./openssl.cnf
|
|
```
|
|
**7. Vygenerovanie certifikátu s CA podpisom pre server**
|
|
```
|
|
./openssl x509 -req -in p256_dilithium2_srv.csr -out p256_dilithium2_srv.crt -CA p256_dilithium2_CA.crt -CAkey p256_dilithium2_CA.key -CAcreateserial -days 365
|
|
```
|
|
**8. Spustenie serveru a klienta**
|
|
- oba programy je potrebné spustiť v samostatných oknách terminálu
|
|
```
|
|
./openssl s_server -cert p256_dilithium2_srv.crt -key p256_dilithium2_srv.key -www -tls1_3
|
|
./openssl s_client -groups kyber1024 -CAfile p256_dilithium2_CA.crt -connect localhost
|
|
```
|
|
|
|
### WINDOWS
|
|
- testované na Windows 10.0.19043
|
|
- tbd
|
|
|
|
## References
|
|
[Open quantum safe OpenSSL 1.1.1t](https://github.com/open-quantum-safe/openssl) |