wolfssh | portable SSH implementation , including support | SSH Utils library
kandi X-RAY | wolfssh Summary
kandi X-RAY | wolfssh Summary
wolfSSL’s Embeddable SSH Server.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of wolfssh
wolfssh Key Features
wolfssh Examples and Code Snippets
Community Discussions
Trending Discussions on wolfssh
QUESTION
I need to use libcurl with https in my project, so I've built zlib, openssl and libcurl (with mingw32-make mingw32-ssl-zlib
) successfully. But after I copied include
libcurl.a
libcurldll.a
libcurl.dll
to my project folder, sent a GET
request to https://www.google.com
it failed with error Unsupported protocol
My OPENSSL_PATH
and ZLIB_PATH
in my lib/Makefile.m32
src/Makefile.m32
are:
ZLIB_PATH = ../../zlib-1.2.8
OPENSSL_PATH = /c/OpenSSL
and the build log:
...ANSWER
Answered 2021-Jan-22 at 09:51Turns out I have to compile all source in the same fashion I use in Linux: ./configure && make && make install
here are the commands I use:
- zlib:
./configure
make && make install
- openssl:
./configure --prefix=$PWD/dist no-idea no-mdc2 no-rc5 shared mingw
(ormingw64
for 64 bits)make && make install
- libcurl:
./configure --prefix=$PWD/dist --with-zlib=PATH_TO_COMPILED_ZLIB --with-ssl=PATH_TO_COMPILED_OPENSSL --host=i686-w64-mingw32
(orx86_64-w64-mingw32
for 64 bits)make && make install
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install wolfssh
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page