Basic OpenSSL provider implementation that uses Windows Cryptography API: Next generation. It is primarily
meant to be a stepping stone for anybody wanting to implement their own provider. The functionality of
this provider is in greater detail in the section This providers functionality
.
Any feedback or pull requests are welcome.
The code is licensed under the MIT license, in case anybody would like to have even more permissive license, create an issue, and I'm going to try and find a solution.
This provider allows retrieval of certificates and their associated RSA keys (other types will be skipped) stored in Windows system stores. Associated keys can be used to sign digests with SHA2-256, 386 and 512 using OpenSSL API (with the work being done by CNG so non-exportable private keys can be used as well).
To load this provider use the name cng_provider
in either the -provider
command line argument where supported or
in OSSL_PROVIDER_load()
. To maintain full functionality od OpenSSL, also load the default
provider.
This provider requires a URI with cng://
schema. After the schema comes the Windows system store name. Currently
supported are:
cng://CA
cng://MY
cng://ROOT
openssl s_client -provider cng_provider -provider default -connect certificate-required-website.example.com:443 -cert cng:my-key-from-store
An example of how one might write code with this provider, that loads a specific certificate from the Windows store,
can be found in the client
folder.
Add NASM and Strawberry Perl to PATH
.
cpan -i Text::Template
cpan -i Test::More
Now you should be ready for the next step.
Make sure you have the all the prerequisities for compilation
.
It is assumed, that the final product should be a x64
dynamically loadable provider. So OpenSSL and the provider are
both compiled in x64
mode. See section x86 compilation
for other architectures.
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
cd "C:\path\to\root\of\openssl\repo"
perl Configure VC-WIN64A -d no-shared enable-trace no-engine
nmake
nmake test
nmake install_ssldirs install_sw
Optionally also run nmake install install_docs
.
cmake -S . -B ./custom-build-directory
cmake --build ./custom-build-directory --target cng_provider
cmake --build ./custom-build-directory --target install
cmake --build ./custom-build-directory --target client
Make sure you compile OpenSSL in x86
mode and have it installed. Use amd64_x86
for vcvarsall.bat
and VC-WIN32
for perl Configure
.
Change the appropriate install directory and OpenSSL location in CMakeLists.txt
.
libcryptod.lib
and libssld.lib
.ossl-modules
folder and files in there, your user must be able to read (and/or write) there.x64
/x86
) OpenSSL version.x86
mode: You have to change two arguments during OpenSSL compilation and then two other in CMakeLists.txt
.