Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
forked from sulayman_tien/poco
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
master
Branches (119)
Tags (59)
master
devel
poco-1.12.5
3990-reactor-performance
poll-closed-server-test
upgrade-ci-actions-to-v3
poco-1.9.5-not-released
3925-c-mysql-compile-fail
poco-1.11.6
poco-1.12.4
poco-1.11.5
poco-1.11.4
poco-1.12.3
feat/acceptor-service-handler-args
poco-1.12.2
fix/posix-sleep
poco-1.12.1
poco-1.12.0
issue-templates
revert-3646-avoid_clang_warning
poco-1.11.6-release
poco-1.12.4-release
poco-1.11.5-release
poco-1.11.4-release
poco-1.12.3-release
poco-1.12.2-release
poco-1.12.1-release
poco-1.12.0-release
poco-1.11.3-release
poco-1.11.2-release
poco-1.11.1-release
poco-1.11.1
poco-1.11.0-release
poco-1.10.1-release
poco-1.10.0-release
poco-1.9.4-release
poco-1.9.3-release
poco-1.9.2-release
poco-1.9.1-release
poco-1.9.0-release
master
Branches (119)
Tags (59)
master
devel
poco-1.12.5
3990-reactor-performance
poll-closed-server-test
upgrade-ci-actions-to-v3
poco-1.9.5-not-released
3925-c-mysql-compile-fail
poco-1.11.6
poco-1.12.4
poco-1.11.5
poco-1.11.4
poco-1.12.3
feat/acceptor-service-handler-args
poco-1.12.2
fix/posix-sleep
poco-1.12.1
poco-1.12.0
issue-templates
revert-3646-avoid_clang_warning
poco-1.11.6-release
poco-1.12.4-release
poco-1.11.5-release
poco-1.11.4-release
poco-1.12.3-release
poco-1.12.2-release
poco-1.12.1-release
poco-1.12.0-release
poco-1.11.3-release
poco-1.11.2-release
poco-1.11.1-release
poco-1.11.1
poco-1.11.0-release
poco-1.10.1-release
poco-1.10.0-release
poco-1.9.4-release
poco-1.9.3-release
poco-1.9.2-release
poco-1.9.1-release
poco-1.9.0-release
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (119)
Tags (59)
master
devel
poco-1.12.5
3990-reactor-performance
poll-closed-server-test
upgrade-ci-actions-to-v3
poco-1.9.5-not-released
3925-c-mysql-compile-fail
poco-1.11.6
poco-1.12.4
poco-1.11.5
poco-1.11.4
poco-1.12.3
feat/acceptor-service-handler-args
poco-1.12.2
fix/posix-sleep
poco-1.12.1
poco-1.12.0
issue-templates
revert-3646-avoid_clang_warning
poco-1.11.6-release
poco-1.12.4-release
poco-1.11.5-release
poco-1.11.4-release
poco-1.12.3-release
poco-1.12.2-release
poco-1.12.1-release
poco-1.12.0-release
poco-1.11.3-release
poco-1.11.2-release
poco-1.11.1-release
poco-1.11.1
poco-1.11.0-release
poco-1.10.1-release
poco-1.10.0-release
poco-1.9.4-release
poco-1.9.3-release
poco-1.9.2-release
poco-1.9.1-release
poco-1.9.0-release
contribute
Sync branch
See difference Through Pull Request Sync
Sync branch
Through Pull Request Sync
A Pull Request will be created to the current
branch and will be merged in to complete the sync
File empty ...
Notice: Creating folder will generate an empty file .keep, because not support in Git
Loading...
README
About NetSSL_Win
================
NetSSL_Win is an implementation of the POCO NetSSL library based on Windows
Schannel. The original NetSSL implementation is based on OpenSSL and thus
has a few OpenSSL-isms in the interface. Generally, source code based
on NetSSL_OpenSSL can be easily ported to use NetSSL_Win. Just a few
minor code changes are required, due to differences in the API.
These are discussed below:
 - Context: The Context constructor uses different arguments. While
 the first argument is the same, all others are different.
 Instead of a certificate file name, a certificate subject name is
 specified. Certificates can be loaded from a Windows
 certificate store, or from PKCS #12 files (.pfx, .p12) containing
 certificate and private key pairs, if the OPT_LOAD_CERT_FROM_FILE
 is specified. In the latter case, a private key passphrase handler
 must be setup.
 Please refer to the header file documentation for more information.
 Furthermore, the following Context methods are not available in NetSSL_Win:
 addChainCertificate(), disableStatelessSessionResumption(),
 enableSessionCache(),flushSessionCache(),
 getSessionCacheSize(), getSessionTimeout(),
 setSessionCacheSize(), setSessionTimeout(), sslContext(),
 useCertificate(), usePrivateKey().
 - SSLManager: The configuration properties used to configure the SSLManager
 are different from the ones used in NetSSL_OpenSSL. Please see the
 SSLManager header file for more information.
 The isFIPSEnabled() method is not available.
 - X509Certificate: Saving a certificate is not supported.
Certificate and Certificate Stores
----------------------------------
The test suite and samples expect a certificate/private key file named
any.pfx, located in the current working directory. This can be changed
by editing the testrunner.xml/TestSuite.xml configuration files.
Alternatively, a certificate from the Windows certificate store can be used.
A suitable self-signed certificate can be created using the Windows
IIS administration console, then exported to a file, and re-imported into
the user's personal store.
To create the certificate, follow these steps:
 1. Launch the Computer Management utility.
 2. Go to Services and Applications > Internet Information Server.
 3. Open the Server Certificates feature.
 4. Under Actions, click "Create Self-Signed Certificate...".
 5. Enter a user-friendly name for the certificate.
 The certificate will be issued to the name of your computer.
 6. Export the certificate by right-clicking it and chosing "Export...".
 7. In Explorer, double-click the exported certificate file (.pfx)
 to launch the Certificate Import Wizard.
 8. Import the certificate into your personal store by
 selecting "Place all certificates in the following store" and
 selecting the "Personal" store in the import wizard.
Windows Embedded Compact
------------------------
Windows Embedded Compact does not support the following Schannel
features:
 - certificate revocation checking (Context::OPT_PERFORM_REVOCATION_CHECK)
 - TLS 1.1 and 1.2 (Context::TLSV1_1_CLIENT_USE, etc.)
 - disabling weak security algorithms (Context::OPT_USE_STRONG_CRYPTO)
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

mirror of poco on github
No labels
README
BSL-1.0
Use BSL-1.0
Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cpp_workspace/poco.git
git@gitee.com:cpp_workspace/poco.git
cpp_workspace
poco
poco
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /