KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
libssllabs
★ 11
Open GitHub ↗
C++ library to work with SSL (ssllabs)
Download README (.md)
Explore Similar Repositories
techradar
:
Inspired by https://github.com/bdargan/techradar I'd like to create my own little techradar
td_revent
:
tickdream rust event - Async IO similar to libevent
plcb
:
Hunting for daily rarities -- boozicorns, really -- from the Pennsylvania Liquor Control Board's databases.
GRNVBEM
:
AR1MA1 - VBEM reverse engineering GRNs method
leaf
:
基于OverFeat的病斑检测系统
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
libssllabs
?
Download (.md)
# libssllabs [](https://github.com/matusso/libssllabs/actions/workflows/ci.yml) [](https://sonarcloud.io/dashboard?id=matusso_libssllabs) <a href="https://scan.coverity.com/projects/matusso-libssllabs"> <img alt="Coverity Scan Build Status" src="https://scan.coverity.com/projects/8326/badge.svg"/> </a> <br><br> C++ library (windows/linux/osx) to work with SSL<br> Qualys SSL Labs: https://www.ssllabs.com/ libssllabs communicates with SSLLabs via API <br> official documentation: https://github.com/ssllabs/ssllabs-scan/blob/stable/ssllabs-api-docs.md ###### Requirements Need CMake 3.21+ and libcurl development headers: ```bash apt-get install cmake libcurl4-openssl-dev ``` Initialize the RapidJSON submodule before configuring: ```bash git submodule update --init --recursive ``` ###### Build And Test ```bash cmake -S . -B build -DSSLLABS_BUILD_TESTS=ON -DSSLLABS_BUILD_TOOLS=ON cmake --build build --parallel ctest --test-dir build --output-on-failure ``` Pull requests now run the same `ctest` suite in GitHub Actions.